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

Side by Side Diff: Source/bindings/v8/PageScriptDebugServer.cpp

Issue 14323004: Make Frame's ScriptController an OwnPtr and remove the #include (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/bindings/v8/NPV8Object.cpp ('k') | Source/bindings/v8/ScriptEventListener.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 17 matching lines...) Expand all
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "config.h" 31 #include "config.h"
32 #include "PageScriptDebugServer.h" 32 #include "PageScriptDebugServer.h"
33 33
34 34
35 #include "Frame.h" 35 #include "Frame.h"
36 #include "InspectorInstrumentation.h" 36 #include "InspectorInstrumentation.h"
37 #include "Page.h" 37 #include "Page.h"
38 #include "ScriptController.h"
38 #include "ScriptDebugListener.h" 39 #include "ScriptDebugListener.h"
39 #include "V8Binding.h" 40 #include "V8Binding.h"
40 #include "V8DOMWindow.h" 41 #include "V8DOMWindow.h"
41 #include "V8RecursionScope.h" 42 #include "V8RecursionScope.h"
42 #include <wtf/OwnPtr.h> 43 #include <wtf/OwnPtr.h>
43 #include <wtf/PassOwnPtr.h> 44 #include <wtf/PassOwnPtr.h>
44 #include <wtf/StdLibExtras.h> 45 #include <wtf/StdLibExtras.h>
45 46
46 namespace WebCore { 47 namespace WebCore {
47 48
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 m_pausedPage = 0; 188 m_pausedPage = 0;
188 } 189 }
189 190
190 void PageScriptDebugServer::quitMessageLoopOnPause() 191 void PageScriptDebugServer::quitMessageLoopOnPause()
191 { 192 {
192 m_clientMessageLoop->quitNow(); 193 m_clientMessageLoop->quitNow();
193 } 194 }
194 195
195 } // namespace WebCore 196 } // namespace WebCore
196 197
OLDNEW
« no previous file with comments | « Source/bindings/v8/NPV8Object.cpp ('k') | Source/bindings/v8/ScriptEventListener.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698