summaryrefslogtreecommitdiff
path: root/deps/v8/src/background-parsing-task.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/background-parsing-task.h')
-rw-r--r--deps/v8/src/background-parsing-task.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/deps/v8/src/background-parsing-task.h b/deps/v8/src/background-parsing-task.h
index 80e1e271d2..e99916169c 100644
--- a/deps/v8/src/background-parsing-task.h
+++ b/deps/v8/src/background-parsing-task.h
@@ -7,9 +7,9 @@
#include "src/base/platform/platform.h"
#include "src/base/platform/semaphore.h"
+#include "src/base/smart-pointers.h"
#include "src/compiler.h"
#include "src/parser.h"
-#include "src/smart-pointers.h"
namespace v8 {
namespace internal {
@@ -23,17 +23,17 @@ struct StreamedSource {
: source_stream(source_stream), encoding(encoding) {}
// Internal implementation of v8::ScriptCompiler::StreamedSource.
- SmartPointer<ScriptCompiler::ExternalSourceStream> source_stream;
+ base::SmartPointer<ScriptCompiler::ExternalSourceStream> source_stream;
ScriptCompiler::StreamedSource::Encoding encoding;
- SmartPointer<ScriptCompiler::CachedData> cached_data;
+ base::SmartPointer<ScriptCompiler::CachedData> cached_data;
// Data needed for parsing, and data needed to to be passed between thread
// between parsing and compilation. These need to be initialized before the
// compilation starts.
UnicodeCache unicode_cache;
- SmartPointer<Zone> zone;
- SmartPointer<ParseInfo> info;
- SmartPointer<Parser> parser;
+ base::SmartPointer<Zone> zone;
+ base::SmartPointer<ParseInfo> info;
+ base::SmartPointer<Parser> parser;
private:
// Prevent copying. Not implemented.