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

Side by Side Diff: third_party/WebKit/Source/core/inspector/PageDebuggerAgent.cpp

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #include "core/inspector/InstrumentingAgents.h" 42 #include "core/inspector/InstrumentingAgents.h"
43 #include "core/inspector/MainThreadDebugger.h" 43 #include "core/inspector/MainThreadDebugger.h"
44 #include "core/inspector/v8/InjectedScript.h" 44 #include "core/inspector/v8/InjectedScript.h"
45 #include "core/loader/DocumentLoader.h" 45 #include "core/loader/DocumentLoader.h"
46 #include "core/page/Page.h" 46 #include "core/page/Page.h"
47 47
48 using blink::TypeBuilder::Runtime::RemoteObject; 48 using blink::TypeBuilder::Runtime::RemoteObject;
49 49
50 namespace blink { 50 namespace blink {
51 51
52 PassOwnPtrWillBeRawPtr<PageDebuggerAgent> PageDebuggerAgent::create(MainThreadDe bugger* mainThreadDebugger, InspectedFrames* inspectedFrames, InjectedScriptMana ger* injectedScriptManager) 52 RawPtr<PageDebuggerAgent> PageDebuggerAgent::create(MainThreadDebugger* mainThre adDebugger, InspectedFrames* inspectedFrames, InjectedScriptManager* injectedScr iptManager)
53 { 53 {
54 return adoptPtrWillBeNoop(new PageDebuggerAgent(mainThreadDebugger, inspecte dFrames, injectedScriptManager)); 54 return (new PageDebuggerAgent(mainThreadDebugger, inspectedFrames, injectedS criptManager));
55 } 55 }
56 56
57 PageDebuggerAgent::PageDebuggerAgent(MainThreadDebugger* mainThreadDebugger, Ins pectedFrames* inspectedFrames, InjectedScriptManager* injectedScriptManager) 57 PageDebuggerAgent::PageDebuggerAgent(MainThreadDebugger* mainThreadDebugger, Ins pectedFrames* inspectedFrames, InjectedScriptManager* injectedScriptManager)
58 : InspectorDebuggerAgent(injectedScriptManager, mainThreadDebugger->debugger (), mainThreadDebugger->contextGroupId(inspectedFrames->root())) 58 : InspectorDebuggerAgent(injectedScriptManager, mainThreadDebugger->debugger (), mainThreadDebugger->contextGroupId(inspectedFrames->root()))
59 , m_inspectedFrames(inspectedFrames) 59 , m_inspectedFrames(inspectedFrames)
60 { 60 {
61 } 61 }
62 62
63 PageDebuggerAgent::~PageDebuggerAgent() 63 PageDebuggerAgent::~PageDebuggerAgent()
64 { 64 {
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 void PageDebuggerAgent::didClearDocumentOfWindowObject(LocalFrame* frame) 121 void PageDebuggerAgent::didClearDocumentOfWindowObject(LocalFrame* frame)
122 { 122 {
123 // FIXME: what about nested objects? 123 // FIXME: what about nested objects?
124 if (frame != m_inspectedFrames->root()) 124 if (frame != m_inspectedFrames->root())
125 return; 125 return;
126 m_asyncCallTracker->resetAsyncOperations(); 126 m_asyncCallTracker->resetAsyncOperations();
127 m_v8DebuggerAgent->reset(); 127 m_v8DebuggerAgent->reset();
128 } 128 }
129 129
130 } // namespace blink 130 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698