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

Side by Side Diff: third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.h

Issue 2782783002: Remove redundant WebLocalFrame* parameter from didFinishDocumentLoad (Closed)
Patch Set: Created 3 years, 8 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 const WebString& message) override; 78 const WebString& message) override;
79 void addMessageToConsole(const WebConsoleMessage&) override; 79 void addMessageToConsole(const WebConsoleMessage&) override;
80 80
81 void postMessageToPageInspector(const WTF::String&); 81 void postMessageToPageInspector(const WTF::String&);
82 82
83 private: 83 private:
84 void prepareShadowPageForLoader(); 84 void prepareShadowPageForLoader();
85 void loadShadowPage(); 85 void loadShadowPage();
86 86
87 // WebFrameClient overrides. 87 // WebFrameClient overrides.
88 void didFinishDocumentLoad(WebLocalFrame*) override; 88 void didFinishDocumentLoad() override;
89 89
90 // WebDevToolsAgentClient overrides. 90 // WebDevToolsAgentClient overrides.
91 void sendProtocolMessage(int sessionId, 91 void sendProtocolMessage(int sessionId,
92 int callId, 92 int callId,
93 const WebString&, 93 const WebString&,
94 const WebString&) override; 94 const WebString&) override;
95 void resumeStartup() override; 95 void resumeStartup() override;
96 WebDevToolsAgentClient::WebKitClientMessageLoop* createClientMessageLoop() 96 WebDevToolsAgentClient::WebKitClientMessageLoop* createClientMessageLoop()
97 override; 97 override;
98 98
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 DoPauseAfterDownload, 146 DoPauseAfterDownload,
147 IsPausedAfterDownload 147 IsPausedAfterDownload
148 } m_pauseAfterDownloadState; 148 } m_pauseAfterDownloadState;
149 149
150 WaitingForDebuggerState m_waitingForDebuggerState; 150 WaitingForDebuggerState m_waitingForDebuggerState;
151 }; 151 };
152 152
153 } // namespace blink 153 } // namespace blink
154 154
155 #endif // WebEmbeddedWorkerImpl_h 155 #endif // WebEmbeddedWorkerImpl_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/LocalFrameClientImpl.cpp ('k') | third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698