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

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

Issue 1377813002: Oilpan: fix build after r351269. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use a WeakPersistent<InjectedScriptManager> instead Created 5 years, 2 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) 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Google Inc. All rights reserved. 3 * Copyright (C) 2013 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 InspectorDebuggerAgent::~InspectorDebuggerAgent() 47 InspectorDebuggerAgent::~InspectorDebuggerAgent()
48 { 48 {
49 #if !ENABLE(OILPAN) 49 #if !ENABLE(OILPAN)
50 ASSERT(!m_instrumentingAgents->inspectorDebuggerAgent()); 50 ASSERT(!m_instrumentingAgents->inspectorDebuggerAgent());
51 #endif 51 #endif
52 } 52 }
53 53
54 DEFINE_TRACE(InspectorDebuggerAgent) 54 DEFINE_TRACE(InspectorDebuggerAgent)
55 { 55 {
56 visitor->trace(m_v8DebuggerAgent);
57 visitor->trace(m_asyncCallTracker); 56 visitor->trace(m_asyncCallTracker);
58 InspectorBaseAgent<InspectorDebuggerAgent, InspectorFrontend::Debugger>::tra ce(visitor); 57 InspectorBaseAgent<InspectorDebuggerAgent, InspectorFrontend::Debugger>::tra ce(visitor);
59 } 58 }
60 59
61 // Protocol implementation. 60 // Protocol implementation.
62 void InspectorDebuggerAgent::enable(ErrorString* errorString) 61 void InspectorDebuggerAgent::enable(ErrorString* errorString)
63 { 62 {
64 m_v8DebuggerAgent->enable(errorString); 63 m_v8DebuggerAgent->enable(errorString);
65 } 64 }
66 65
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 { 310 {
312 m_v8DebuggerAgent->clearFrontend(); 311 m_v8DebuggerAgent->clearFrontend();
313 } 312 }
314 313
315 void InspectorDebuggerAgent::restore() 314 void InspectorDebuggerAgent::restore()
316 { 315 {
317 m_v8DebuggerAgent->restore(); 316 m_v8DebuggerAgent->restore();
318 } 317 }
319 318
320 } // namespace blink 319 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698