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

Side by Side Diff: Source/core/inspector/InjectedScriptHost.h

Issue 1030163002: Oilpan: fix build after r192519. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « no previous file | Source/core/inspector/InjectedScriptHost.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) 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2007 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Google Inc. All rights reserved. 3 * Copyright (C) 2009 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 void unmonitorFunction(const String& scriptId, int lineNumber, int columnNum ber); 99 void unmonitorFunction(const String& scriptId, int lineNumber, int columnNum ber);
100 100
101 ScriptDebugServer& scriptDebugServer() { return *m_scriptDebugServer; } 101 ScriptDebugServer& scriptDebugServer() { return *m_scriptDebugServer; }
102 102
103 private: 103 private:
104 InjectedScriptHost(); 104 InjectedScriptHost();
105 105
106 RawPtrWillBeMember<InspectorConsoleAgent> m_consoleAgent; 106 RawPtrWillBeMember<InspectorConsoleAgent> m_consoleAgent;
107 RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent; 107 RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent;
108 OwnPtr<InspectCallback> m_inspectCallback; 108 OwnPtr<InspectCallback> m_inspectCallback;
109 ScriptDebugServer* m_scriptDebugServer; 109 RawPtrWillBeMember<ScriptDebugServer> m_scriptDebugServer;
110 Vector<OwnPtr<InspectableObject> > m_inspectedObjects; 110 Vector<OwnPtr<InspectableObject> > m_inspectedObjects;
111 OwnPtr<InspectableObject> m_defaultInspectableObject; 111 OwnPtr<InspectableObject> m_defaultInspectableObject;
112 }; 112 };
113 113
114 } // namespace blink 114 } // namespace blink
115 115
116 #endif // InjectedScriptHost_h 116 #endif // InjectedScriptHost_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/InjectedScriptHost.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698