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

Side by Side Diff: Source/core/inspector/InjectedScriptManager.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) 2012 Google Inc. All rights reserved. 3 * Copyright (C) 2012 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 static bool canAccessInspectedWindow(ScriptState*); 86 static bool canAccessInspectedWindow(ScriptState*);
87 static bool canAccessInspectedWorkerGlobalScope(ScriptState*); 87 static bool canAccessInspectedWorkerGlobalScope(ScriptState*);
88 88
89 int m_nextInjectedScriptId; 89 int m_nextInjectedScriptId;
90 typedef HashMap<int, InjectedScript> IdToInjectedScriptMap; 90 typedef HashMap<int, InjectedScript> IdToInjectedScriptMap;
91 IdToInjectedScriptMap m_idToInjectedScript; 91 IdToInjectedScriptMap m_idToInjectedScript;
92 RefPtrWillBeMember<InjectedScriptHost> m_injectedScriptHost; 92 RefPtrWillBeMember<InjectedScriptHost> m_injectedScriptHost;
93 InspectedStateAccessCheck m_inspectedStateAccessCheck; 93 InspectedStateAccessCheck m_inspectedStateAccessCheck;
94 typedef HashMap<RefPtr<ScriptState>, int> ScriptStateToId; 94 typedef HashMap<RefPtr<ScriptState>, int> ScriptStateToId;
95 ScriptStateToId m_scriptStateToId; 95 ScriptStateToId m_scriptStateToId;
96 HashSet<OwnPtr<CallbackData> > m_callbackDataSet; 96 HashSet<OwnPtr<CallbackData>> m_callbackDataSet;
97 bool m_customObjectFormatterEnabled; 97 bool m_customObjectFormatterEnabled;
98 }; 98 };
99 99
100 } // namespace blink 100 } // namespace blink
101 101
102 #endif // !defined(InjectedScriptManager_h) 102 #endif // !defined(InjectedScriptManager_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InjectedScriptHost.h ('k') | Source/core/inspector/InspectorAnimationAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698