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

Side by Side Diff: third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerClient.h

Issue 1990353002: [DevTools] Capture call stacks for console messages without location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: one more win7 expectation Created 4 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8DebuggerClient_h 5 #ifndef V8DebuggerClient_h
6 #define V8DebuggerClient_h 6 #define V8DebuggerClient_h
7 7
8 #include "platform/PlatformExport.h" 8 #include "platform/PlatformExport.h"
9 #include "platform/v8_inspector/public/ConsoleAPITypes.h" 9 #include "platform/v8_inspector/public/ConsoleAPITypes.h"
10 #include "platform/v8_inspector/public/ConsoleTypes.h" 10 #include "platform/v8_inspector/public/ConsoleTypes.h"
(...skipping 17 matching lines...) Expand all
28 virtual void endUserGesture() = 0; 28 virtual void endUserGesture() = 0;
29 virtual void eventListeners(v8::Local<v8::Value>, V8EventListenerInfoList&) = 0; 29 virtual void eventListeners(v8::Local<v8::Value>, V8EventListenerInfoList&) = 0;
30 virtual bool callingContextCanAccessContext(v8::Local<v8::Context> calling, v8::Local<v8::Context> target) = 0; 30 virtual bool callingContextCanAccessContext(v8::Local<v8::Context> calling, v8::Local<v8::Context> target) = 0;
31 virtual String16 valueSubtype(v8::Local<v8::Value>) = 0; 31 virtual String16 valueSubtype(v8::Local<v8::Value>) = 0;
32 virtual bool formatAccessorsAsProperties(v8::Local<v8::Value>) = 0; 32 virtual bool formatAccessorsAsProperties(v8::Local<v8::Value>) = 0;
33 virtual bool isExecutionAllowed() = 0; 33 virtual bool isExecutionAllowed() = 0;
34 virtual double currentTimeMS() = 0; 34 virtual double currentTimeMS() = 0;
35 virtual int ensureDefaultContextInGroup(int contextGroupId) = 0; 35 virtual int ensureDefaultContextInGroup(int contextGroupId) = 0;
36 virtual bool isInspectableHeapObject(v8::Local<v8::Object>) = 0; 36 virtual bool isInspectableHeapObject(v8::Local<v8::Object>) = 0;
37 37
38 virtual void reportMessageToConsole(v8::Local<v8::Context>, MessageType, Mes sageLevel, const String16& message, const v8::FunctionCallbackInfo<v8::Value>* a rguments, unsigned skipArgumentCount, int maxStackSize) = 0; 38 virtual void reportMessageToConsole(v8::Local<v8::Context>, MessageType, Mes sageLevel, const String16& message, const v8::FunctionCallbackInfo<v8::Value>* a rguments, unsigned skipArgumentCount) = 0;
39 39
40 virtual void consoleTime(const String16& title) = 0; 40 virtual void consoleTime(const String16& title) = 0;
41 virtual void consoleTimeEnd(const String16& title) = 0; 41 virtual void consoleTimeEnd(const String16& title) = 0;
42 virtual void consoleTimeStamp(const String16& title) = 0; 42 virtual void consoleTimeStamp(const String16& title) = 0;
43 43
44 virtual v8::MaybeLocal<v8::Value> memoryInfo(v8::Isolate*, v8::Local<v8::Con text>, v8::Local<v8::Object> creationContext) = 0; 44 virtual v8::MaybeLocal<v8::Value> memoryInfo(v8::Isolate*, v8::Local<v8::Con text>, v8::Local<v8::Object> creationContext) = 0;
45 45
46 typedef void (*TimerCallback)(void*); 46 typedef void (*TimerCallback)(void*);
47 virtual void startRepeatingTimer(double, TimerCallback, void* data) = 0; 47 virtual void startRepeatingTimer(double, TimerCallback, void* data) = 0;
48 virtual void cancelTimer(void* data) = 0; 48 virtual void cancelTimer(void* data) = 0;
49 }; 49 };
50 50
51 } // namespace blink 51 } // namespace blink
52 52
53 53
54 #endif // V8DebuggerClient_h 54 #endif // V8DebuggerClient_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698