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

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

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) 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 void init() override; 100 void init() override;
101 void setFrontend(InspectorFrontend*) override; 101 void setFrontend(InspectorFrontend*) override;
102 void clearFrontend() override; 102 void clearFrontend() override;
103 void restore() override; 103 void restore() override;
104 104
105 V8DebuggerAgent* v8DebuggerAgent() const { return m_v8DebuggerAgent.get(); } 105 V8DebuggerAgent* v8DebuggerAgent() const { return m_v8DebuggerAgent.get(); }
106 106
107 protected: 107 protected:
108 InspectorDebuggerAgent(InjectedScriptManager*, V8Debugger*, int contextGroup Id); 108 InspectorDebuggerAgent(InjectedScriptManager*, V8Debugger*, int contextGroup Id);
109 109
110 OwnPtrWillBeMember<V8DebuggerAgent> m_v8DebuggerAgent; 110 OwnPtr<V8DebuggerAgent> m_v8DebuggerAgent;
111 OwnPtrWillBeMember<AsyncCallTracker> m_asyncCallTracker; 111 OwnPtrWillBeMember<AsyncCallTracker> m_asyncCallTracker;
112 }; 112 };
113 113
114 } // namespace blink 114 } // namespace blink
115 115
116 116
117 #endif // !defined(InspectorDebuggerAgent_h) 117 #endif // !defined(InspectorDebuggerAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698