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

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

Issue 2514323006: Allow Blink to generate cc::FrameSinkId from RenderThread (Closed)
Patch Set: change to generateFrameSinkId Created 4 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
« no previous file with comments | « no previous file | 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 bool sync_dir) override; 107 bool sync_dir) override;
108 long databaseGetFileAttributes( 108 long databaseGetFileAttributes(
109 const blink::WebString& vfs_file_name) override; 109 const blink::WebString& vfs_file_name) override;
110 long long databaseGetFileSize(const blink::WebString& vfs_file_name) override; 110 long long databaseGetFileSize(const blink::WebString& vfs_file_name) override;
111 long long databaseGetSpaceAvailableForOrigin( 111 long long databaseGetSpaceAvailableForOrigin(
112 const blink::WebSecurityOrigin& origin) override; 112 const blink::WebSecurityOrigin& origin) override;
113 bool databaseSetFileSize(const blink::WebString& vfs_file_name, 113 bool databaseSetFileSize(const blink::WebString& vfs_file_name,
114 long long size) override; 114 long long size) override;
115 blink::WebString databaseCreateOriginIdentifier( 115 blink::WebString databaseCreateOriginIdentifier(
116 const blink::WebSecurityOrigin& origin) override; 116 const blink::WebSecurityOrigin& origin) override;
117 cc::FrameSinkId generateFrameSinkId() override;
117 118
118 blink::WebString signedPublicKeyAndChallengeString( 119 blink::WebString signedPublicKeyAndChallengeString(
119 unsigned key_size_index, 120 unsigned key_size_index,
120 const blink::WebString& challenge, 121 const blink::WebString& challenge,
121 const blink::WebURL& url, 122 const blink::WebURL& url,
122 const blink::WebURL& top_origin) override; 123 const blink::WebURL& top_origin) override;
123 void getPluginList(bool refresh, 124 void getPluginList(bool refresh,
124 const blink::WebSecurityOrigin& mainFrameOrigin, 125 const blink::WebSecurityOrigin& mainFrameOrigin,
125 blink::WebPluginListBuilder* builder) override; 126 blink::WebPluginListBuilder* builder) override;
126 blink::WebPublicSuffixList* publicSuffixList() override; 127 blink::WebPublicSuffixList* publicSuffixList() override;
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; 302 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_;
302 303
303 mojom::URLLoaderFactoryAssociatedPtr url_loader_factory_; 304 mojom::URLLoaderFactoryAssociatedPtr url_loader_factory_;
304 305
305 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); 306 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl);
306 }; 307 };
307 308
308 } // namespace content 309 } // namespace content
309 310
310 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 311 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/renderer_blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698