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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.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) 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 116
117 void didAddBreakpoint(); 117 void didAddBreakpoint();
118 void didRemoveBreakpoint(); 118 void didRemoveBreakpoint();
119 void setEnabled(bool); 119 void setEnabled(bool);
120 120
121 void eventListeners(InjectedScript&, v8::Local<v8::Value>, const String& obj ectGroup, RefPtr<TypeBuilder::Array<TypeBuilder::DOMDebugger::EventListener>>& l istenersArray); 121 void eventListeners(InjectedScript&, v8::Local<v8::Value>, const String& obj ectGroup, RefPtr<TypeBuilder::Array<TypeBuilder::DOMDebugger::EventListener>>& l istenersArray);
122 PassRefPtr<TypeBuilder::DOMDebugger::EventListener> buildObjectForEventListe ner(InjectedScript&, v8::Local<v8::Object> handler, bool useCapture, const Strin g& type, const String& objectGroupId); 122 PassRefPtr<TypeBuilder::DOMDebugger::EventListener> buildObjectForEventListe ner(InjectedScript&, v8::Local<v8::Object> handler, bool useCapture, const Strin g& type, const String& objectGroupId);
123 123
124 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; 124 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager;
125 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; 125 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent;
126 RawPtrWillBeMember<V8DebuggerAgent> m_debuggerAgent; 126 V8DebuggerAgent* m_debuggerAgent;
127 WillBeHeapHashMap<RawPtrWillBeMember<Node>, uint32_t> m_domBreakpoints; 127 WillBeHeapHashMap<RawPtrWillBeMember<Node>, uint32_t> m_domBreakpoints;
128 }; 128 };
129 129
130 } // namespace blink 130 } // namespace blink
131 131
132 132
133 #endif // !defined(InspectorDOMDebuggerAgent_h) 133 #endif // !defined(InspectorDOMDebuggerAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698