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

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

Issue 884753003: Fix template angle bracket syntax in inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Some more fixes Created 5 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) 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 void monitorFunction(const String& scriptId, int lineNumber, int columnNumbe r, const String& functionName); 90 void monitorFunction(const String& scriptId, int lineNumber, int columnNumbe r, const String& functionName);
91 void unmonitorFunction(const String& scriptId, int lineNumber, int columnNum ber); 91 void unmonitorFunction(const String& scriptId, int lineNumber, int columnNum ber);
92 92
93 ScriptDebugServer& scriptDebugServer() { return *m_scriptDebugServer; } 93 ScriptDebugServer& scriptDebugServer() { return *m_scriptDebugServer; }
94 94
95 private: 95 private:
96 InjectedScriptHost(); 96 InjectedScriptHost();
97 97
98 RawPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; 98 RawPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
99 ScriptDebugServer* m_scriptDebugServer; 99 ScriptDebugServer* m_scriptDebugServer;
100 Vector<OwnPtr<InspectableObject> > m_inspectedObjects; 100 Vector<OwnPtr<InspectableObject>> m_inspectedObjects;
101 OwnPtr<InspectableObject> m_defaultInspectableObject; 101 OwnPtr<InspectableObject> m_defaultInspectableObject;
102 }; 102 };
103 103
104 } // namespace blink 104 } // namespace blink
105 105
106 #endif // InjectedScriptHost_h 106 #endif // InjectedScriptHost_h
OLDNEW
« no previous file with comments | « Source/core/inspector/InjectedScriptBase.cpp ('k') | Source/core/inspector/InjectedScriptManager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698