Index: src/compiler.cc |
diff --git a/src/compiler.cc b/src/compiler.cc |
index c4c3b4f106cfc1ce3307666a88be8a4bcdf507c9..147adb0511342564bffbe76341409bcf9f7e2741 100644 |
--- a/src/compiler.cc |
+++ b/src/compiler.cc |
@@ -1515,7 +1515,8 @@ MaybeHandle<Code> Compiler::GetOptimizedCode(Handle<JSFunction> function, |
return MaybeHandle<Code>(); |
} |
- SmartPointer<CompilationInfo> info(new CompilationInfoWithZone(function)); |
+ base::SmartPointer<CompilationInfo> info( |
+ new CompilationInfoWithZone(function)); |
VMState<COMPILER> state(isolate); |
DCHECK(!isolate->has_pending_exception()); |
PostponeInterruptsScope postpone(isolate); |
@@ -1540,7 +1541,7 @@ MaybeHandle<Code> Compiler::GetOptimizedCode(Handle<JSFunction> function, |
Handle<Code> Compiler::GetConcurrentlyOptimizedCode(OptimizedCompileJob* job) { |
// Take ownership of compilation info. Deleting compilation info |
// also tears down the zone and the recompile job. |
- SmartPointer<CompilationInfo> info(job->info()); |
+ base::SmartPointer<CompilationInfo> info(job->info()); |
Isolate* isolate = info->isolate(); |
VMState<COMPILER> state(isolate); |