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

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

Issue 2733283004: Expose WebServiceWorkerNetworkProvider on DataSource (Closed)
Patch Set: crash fix Created 3 years, 9 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, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple 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 are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 192
193 void dispatchWillStartUsingPeerConnectionHandler( 193 void dispatchWillStartUsingPeerConnectionHandler(
194 WebRTCPeerConnectionHandler*) override; 194 WebRTCPeerConnectionHandler*) override;
195 195
196 bool allowWebGL(bool enabledPerSettings) override; 196 bool allowWebGL(bool enabledPerSettings) override;
197 197
198 void dispatchWillInsertBody() override; 198 void dispatchWillInsertBody() override;
199 199
200 std::unique_ptr<WebServiceWorkerProvider> createServiceWorkerProvider() 200 std::unique_ptr<WebServiceWorkerProvider> createServiceWorkerProvider()
201 override; 201 override;
202 bool isControlledByServiceWorker(DocumentLoader&) override;
203 int64_t serviceWorkerID(DocumentLoader&) override;
204 SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() override; 202 SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() override;
205 203
206 std::unique_ptr<WebApplicationCacheHost> createApplicationCacheHost( 204 std::unique_ptr<WebApplicationCacheHost> createApplicationCacheHost(
207 WebApplicationCacheHostClient*) override; 205 WebApplicationCacheHostClient*) override;
208 206
209 void dispatchDidChangeManifest() override; 207 void dispatchDidChangeManifest() override;
210 208
211 unsigned backForwardLength() override; 209 unsigned backForwardLength() override;
212 210
213 void suddenTerminationDisablerChanged(bool present, 211 void suddenTerminationDisablerChanged(bool present,
(...skipping 24 matching lines...) Expand all
238 236
239 DEFINE_TYPE_CASTS(LocalFrameClientImpl, 237 DEFINE_TYPE_CASTS(LocalFrameClientImpl,
240 LocalFrameClient, 238 LocalFrameClient,
241 client, 239 client,
242 client->isLocalFrameClientImpl(), 240 client->isLocalFrameClientImpl(),
243 client.isLocalFrameClientImpl()); 241 client.isLocalFrameClientImpl());
244 242
245 } // namespace blink 243 } // namespace blink
246 244
247 #endif 245 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698