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

Side by Side Diff: Source/core/inspector/InspectorDebuggerAgent.h

Issue 325143002: Oilpan: Prepare moving inspector script related classes to oilpan. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010-2011 Google Inc. All rights reserved. 3 * Copyright (C) 2010-2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 85
86 virtual void canSetScriptSource(ErrorString*, bool* result) OVERRIDE FINAL { *result = true; } 86 virtual void canSetScriptSource(ErrorString*, bool* result) OVERRIDE FINAL { *result = true; }
87 87
88 virtual void init() OVERRIDE FINAL; 88 virtual void init() OVERRIDE FINAL;
89 virtual void setFrontend(InspectorFrontend*) OVERRIDE FINAL; 89 virtual void setFrontend(InspectorFrontend*) OVERRIDE FINAL;
90 virtual void clearFrontend() OVERRIDE FINAL; 90 virtual void clearFrontend() OVERRIDE FINAL;
91 virtual void restore() OVERRIDE FINAL; 91 virtual void restore() OVERRIDE FINAL;
92 92
93 bool isPaused(); 93 bool isPaused();
94 bool runningNestedMessageLoop(); 94 bool runningNestedMessageLoop();
95 void addMessageToConsole(MessageSource, MessageType, MessageLevel, const Str ing&, ScriptCallStack*, unsigned long); 95 void addMessageToConsole(MessageSource, MessageType, MessageLevel, const Str ing&, PassRefPtrWillBeRawPtr<ScriptCallStack>, unsigned long);
96 void addMessageToConsole(MessageSource, MessageType, MessageLevel, const Str ing&, ScriptState*, ScriptArguments*, unsigned long); 96 void addMessageToConsole(MessageSource, MessageType, MessageLevel, const Str ing&, ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>, unsigned long);
97 97
98 String preprocessEventListener(LocalFrame*, const String& source, const Stri ng& url, const String& functionName); 98 String preprocessEventListener(LocalFrame*, const String& source, const Stri ng& url, const String& functionName);
99 PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame*, const ScriptSourceCode& ); 99 PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame*, const ScriptSourceCode& );
100 100
101 // Part of the protocol. 101 // Part of the protocol.
102 virtual void enable(ErrorString*) OVERRIDE FINAL; 102 virtual void enable(ErrorString*) OVERRIDE FINAL;
103 virtual void disable(ErrorString*) OVERRIDE FINAL; 103 virtual void disable(ErrorString*) OVERRIDE FINAL;
104 virtual void setBreakpointsActive(ErrorString*, bool active) OVERRIDE FINAL; 104 virtual void setBreakpointsActive(ErrorString*, bool active) OVERRIDE FINAL;
105 virtual void setSkipAllPauses(ErrorString*, bool skipped, const bool* untilR eload) OVERRIDE FINAL; 105 virtual void setSkipAllPauses(ErrorString*, bool skipped, const bool* untilR eload) OVERRIDE FINAL;
106 106
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 int m_minFrameCountForSkip; 243 int m_minFrameCountForSkip;
244 bool m_skipAllPauses; 244 bool m_skipAllPauses;
245 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; 245 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp;
246 AsyncCallStackTracker m_asyncCallStackTracker; 246 AsyncCallStackTracker m_asyncCallStackTracker;
247 }; 247 };
248 248
249 } // namespace WebCore 249 } // namespace WebCore
250 250
251 251
252 #endif // !defined(InspectorDebuggerAgent_h) 252 #endif // !defined(InspectorDebuggerAgent_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorConsoleAgent.cpp ('k') | Source/core/inspector/InspectorDebuggerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698