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

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

Issue 2651583007: Plumbing blink::Interface{Provider|Registry} through WebLocalFrame's constructor. (Closed)
Patch Set: ScreenWakeLockTest Created 3 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 void willDestroyWorkerGlobalScope() override {} 90 void willDestroyWorkerGlobalScope() override {}
91 void didTerminateWorkerThread() override; 91 void didTerminateWorkerThread() override;
92 92
93 // WebFrameClient methods to support resource loading thru the 'shadow page'. 93 // WebFrameClient methods to support resource loading thru the 'shadow page'.
94 WebApplicationCacheHost* createApplicationCacheHost( 94 WebApplicationCacheHost* createApplicationCacheHost(
95 WebApplicationCacheHostClient*) override; 95 WebApplicationCacheHostClient*) override;
96 void willSendRequest(WebLocalFrame*, WebURLRequest&) override; 96 void willSendRequest(WebLocalFrame*, WebURLRequest&) override;
97 void didFinishDocumentLoad(WebLocalFrame*) override; 97 void didFinishDocumentLoad(WebLocalFrame*) override;
98 bool isControlledByServiceWorker(WebDataSource&) override; 98 bool isControlledByServiceWorker(WebDataSource&) override;
99 int64_t serviceWorkerID(WebDataSource&) override; 99 int64_t serviceWorkerID(WebDataSource&) override;
100 InterfaceProvider* interfaceProvider() override;
101 100
102 // WebDevToolsAgentClient overrides. 101 // WebDevToolsAgentClient overrides.
103 void sendProtocolMessage(int sessionId, 102 void sendProtocolMessage(int sessionId,
104 int callId, 103 int callId,
105 const WebString&, 104 const WebString&,
106 const WebString&) override; 105 const WebString&) override;
107 void resumeStartup() override; 106 void resumeStartup() override;
108 WebDevToolsAgentClient::WebKitClientMessageLoop* createClientMessageLoop() 107 WebDevToolsAgentClient::WebKitClientMessageLoop* createClientMessageLoop()
109 override; 108 override;
110 109
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 RefPtr<WorkerLoaderProxy> m_loaderProxy; 183 RefPtr<WorkerLoaderProxy> m_loaderProxy;
185 184
186 WebURL m_url; 185 WebURL m_url;
187 WebString m_name; 186 WebString m_name;
188 WebAddressSpace m_creationAddressSpace; 187 WebAddressSpace m_creationAddressSpace;
189 }; 188 };
190 189
191 } // namespace blink 190 } // namespace blink
192 191
193 #endif // WebSharedWorkerImpl_h 192 #endif // WebSharedWorkerImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698