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

Side by Side Diff: content/renderer/renderer_blink_platform_impl.h

Issue 2701753003: [WIP] off-main-thread loading
Patch Set: small fix 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
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/renderer/renderer_blink_platform_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 int64_t, 94 int64_t,
95 const char*, 95 const char*,
96 size_t) override; 96 size_t) override;
97 void cacheMetadataInCacheStorage( 97 void cacheMetadataInCacheStorage(
98 const blink::WebURL&, 98 const blink::WebURL&,
99 int64_t, 99 int64_t,
100 const char*, 100 const char*,
101 size_t, 101 size_t,
102 const blink::WebSecurityOrigin& cacheStorageOrigin, 102 const blink::WebSecurityOrigin& cacheStorageOrigin,
103 const blink::WebString& cacheStorageCacheName) override; 103 const blink::WebString& cacheStorageCacheName) override;
104 std::unique_ptr<blink::WebWorkerFetchContextInfo>
105 createWorkerFetchContextInfo() override;
104 blink::WebString defaultLocale() override; 106 blink::WebString defaultLocale() override;
105 void suddenTerminationChanged(bool enabled) override; 107 void suddenTerminationChanged(bool enabled) override;
106 blink::WebStorageNamespace* createLocalStorageNamespace() override; 108 blink::WebStorageNamespace* createLocalStorageNamespace() override;
107 blink::Platform::FileHandle databaseOpenFile( 109 blink::Platform::FileHandle databaseOpenFile(
108 const blink::WebString& vfs_file_name, 110 const blink::WebString& vfs_file_name,
109 int desired_flags) override; 111 int desired_flags) override;
110 int databaseDeleteFile(const blink::WebString& vfs_file_name, 112 int databaseDeleteFile(const blink::WebString& vfs_file_name,
111 bool sync_dir) override; 113 bool sync_dir) override;
112 long databaseGetFileAttributes( 114 long databaseGetFileAttributes(
113 const blink::WebString& vfs_file_name) override; 115 const blink::WebString& vfs_file_name) override;
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; 305 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_;
304 306
305 mojom::URLLoaderFactoryAssociatedPtr url_loader_factory_; 307 mojom::URLLoaderFactoryAssociatedPtr url_loader_factory_;
306 308
307 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); 309 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl);
308 }; 310 };
309 311
310 } // namespace content 312 } // namespace content
311 313
312 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 314 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/renderer/renderer_blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698