| Index: src/d8.h
|
| diff --git a/src/d8.h b/src/d8.h
|
| index a3716ee772f819fa823960f566319b87fb557f39..411dfdda3e12488a775a35a29b3548a93a838efd 100644
|
| --- a/src/d8.h
|
| +++ b/src/d8.h
|
| @@ -302,9 +302,10 @@ class Shell : public i::AllStatic {
|
| Handle<String> command);
|
| static void DispatchDebugMessages();
|
| #endif // ENABLE_DEBUGGER_SUPPORT
|
| -#endif // V8_SHARED
|
|
|
| static void PerformanceNow(const v8::FunctionCallbackInfo<v8::Value>& args);
|
| +#endif // V8_SHARED
|
| +
|
| static void RealmCurrent(const v8::FunctionCallbackInfo<v8::Value>& args);
|
| static void RealmOwner(const v8::FunctionCallbackInfo<v8::Value>& args);
|
| static void RealmGlobal(const v8::FunctionCallbackInfo<v8::Value>& args);
|
| @@ -382,7 +383,6 @@ class Shell : public i::AllStatic {
|
|
|
| static const char* kPrompt;
|
| static ShellOptions options;
|
| - static const i::TimeTicks kInitialTicks;
|
|
|
| private:
|
| static Persistent<Context> evaluation_context_;
|
| @@ -395,6 +395,7 @@ class Shell : public i::AllStatic {
|
| static CounterCollection* counters_;
|
| static i::OS::MemoryMappedFile* counters_file_;
|
| static i::Mutex context_mutex_;
|
| + static const i::TimeTicks kInitialTicks;
|
|
|
| static Counter* GetCounter(const char* name, bool is_histogram);
|
| static void InstallUtilityScript(Isolate* isolate);
|
|
|