Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(573)

Side by Side Diff: third_party/WebKit/Source/core/inspector/MainThreadDebugger.h

Issue 1873533002: [DevTools] Force context creation when runtime is enabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more tests Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2011 Google Inc. All rights reserved. 2 * Copyright (c) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 70
71 private: 71 private:
72 // V8DebuggerClient implementation. 72 // V8DebuggerClient implementation.
73 void runMessageLoopOnPause(int contextGroupId) override; 73 void runMessageLoopOnPause(int contextGroupId) override;
74 void quitMessageLoopOnPause() override; 74 void quitMessageLoopOnPause() override;
75 void muteWarningsAndDeprecations() override; 75 void muteWarningsAndDeprecations() override;
76 void unmuteWarningsAndDeprecations() override; 76 void unmuteWarningsAndDeprecations() override;
77 void muteConsole() override; 77 void muteConsole() override;
78 void unmuteConsole() override; 78 void unmuteConsole() override;
79 bool callingContextCanAccessContext(v8::Local<v8::Context> calling, v8::Loca l<v8::Context> target) override; 79 bool callingContextCanAccessContext(v8::Local<v8::Context> calling, v8::Loca l<v8::Context> target) override;
80 int ensureDefaultContextInGroup(int contextGroupId) override;
80 81
81 OwnPtr<ClientMessageLoop> m_clientMessageLoop; 82 OwnPtr<ClientMessageLoop> m_clientMessageLoop;
82 OwnPtr<InspectorTaskRunner> m_taskRunner; 83 OwnPtr<InspectorTaskRunner> m_taskRunner;
83 84
84 static MainThreadDebugger* s_instance; 85 static MainThreadDebugger* s_instance;
85 }; 86 };
86 87
87 } // namespace blink 88 } // namespace blink
88 89
89 90
90 #endif // MainThreadDebugger_h 91 #endif // MainThreadDebugger_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698