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

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

Issue 686763002: Fix Runtime.executionContextCreated for crafted iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 { 48 {
49 return adoptPtrWillBeNoop(new PageRuntimeAgent(injectedScriptManager, cl ient, scriptDebugServer, page, pageAgent)); 49 return adoptPtrWillBeNoop(new PageRuntimeAgent(injectedScriptManager, cl ient, scriptDebugServer, page, pageAgent));
50 } 50 }
51 virtual ~PageRuntimeAgent(); 51 virtual ~PageRuntimeAgent();
52 virtual void trace(Visitor*) override; 52 virtual void trace(Visitor*) override;
53 virtual void init() override; 53 virtual void init() override;
54 virtual void enable(ErrorString*) override; 54 virtual void enable(ErrorString*) override;
55 virtual void run(ErrorString*) override; 55 virtual void run(ErrorString*) override;
56 56
57 void didClearDocumentOfWindowObject(LocalFrame*); 57 void didClearDocumentOfWindowObject(LocalFrame*);
58 void didCreateIsolatedContext(LocalFrame*, ScriptState*, SecurityOrigin*); 58 void didCreateScriptContext(LocalFrame*, ScriptState*, SecurityOrigin*, bool isMainWorldContext);
59 void frameWindowDiscarded(LocalDOMWindow*); 59 void willReleaseScriptContext(LocalFrame*, ScriptState*);
60 60
61 private: 61 private:
62 PageRuntimeAgent(InjectedScriptManager*, InspectorClient*, ScriptDebugServer *, Page*, InspectorPageAgent*); 62 PageRuntimeAgent(InjectedScriptManager*, InspectorClient*, ScriptDebugServer *, Page*, InspectorPageAgent*);
63 63
64 virtual InjectedScript injectedScriptForEval(ErrorString*, const int* execut ionContextId) override; 64 virtual InjectedScript injectedScriptForEval(ErrorString*, const int* execut ionContextId) override;
65 virtual void muteConsole() override; 65 virtual void muteConsole() override;
66 virtual void unmuteConsole() override; 66 virtual void unmuteConsole() override;
67 void reportExecutionContextCreation(); 67 void reportExecutionContextCreation();
68 68
69 InspectorClient* m_client; 69 InspectorClient* m_client;
70 RawPtrWillBeMember<Page> m_inspectedPage; 70 RawPtrWillBeMember<Page> m_inspectedPage;
71 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; 71 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
72 bool m_mainWorldContextCreated; 72 bool m_mainWorldContextCreated;
73 }; 73 };
74 74
75 } // namespace blink 75 } // namespace blink
76 76
77 77
78 #endif // !defined(InspectorPagerAgent_h) 78 #endif // !defined(InspectorPagerAgent_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorPageAgent.cpp ('k') | Source/core/inspector/PageRuntimeAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698