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

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

Issue 1476873002: Adding <keygen> Content Setting (Final) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing naming. Created 4 years, 11 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 // 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 long databaseGetFileAttributes( 103 long databaseGetFileAttributes(
104 const blink::WebString& vfs_file_name) override; 104 const blink::WebString& vfs_file_name) override;
105 long long databaseGetFileSize(const blink::WebString& vfs_file_name) override; 105 long long databaseGetFileSize(const blink::WebString& vfs_file_name) override;
106 long long databaseGetSpaceAvailableForOrigin( 106 long long databaseGetSpaceAvailableForOrigin(
107 const blink::WebString& origin_identifier) override; 107 const blink::WebString& origin_identifier) override;
108 bool databaseSetFileSize(const blink::WebString& vfs_file_name, 108 bool databaseSetFileSize(const blink::WebString& vfs_file_name,
109 long long size) override; 109 long long size) override;
110 blink::WebString signedPublicKeyAndChallengeString( 110 blink::WebString signedPublicKeyAndChallengeString(
111 unsigned key_size_index, 111 unsigned key_size_index,
112 const blink::WebString& challenge, 112 const blink::WebString& challenge,
113 const blink::WebURL& url) override; 113 const blink::WebURL& url,
114 const blink::WebURL& top_origin) override;
114 void getPluginList(bool refresh, 115 void getPluginList(bool refresh,
115 blink::WebPluginListBuilder* builder) override; 116 blink::WebPluginListBuilder* builder) override;
116 blink::WebPublicSuffixList* publicSuffixList() override; 117 blink::WebPublicSuffixList* publicSuffixList() override;
117 void screenColorProfile(blink::WebVector<char>* to_profile) override; 118 void screenColorProfile(blink::WebVector<char>* to_profile) override;
118 blink::WebScrollbarBehavior* scrollbarBehavior() override; 119 blink::WebScrollbarBehavior* scrollbarBehavior() override;
119 blink::WebIDBFactory* idbFactory() override; 120 blink::WebIDBFactory* idbFactory() override;
120 blink::WebServiceWorkerCacheStorage* cacheStorage( 121 blink::WebServiceWorkerCacheStorage* cacheStorage(
121 const blink::WebString& origin_identifier) override; 122 const blink::WebString& origin_identifier) override;
122 blink::WebFileSystem* fileSystem() override; 123 blink::WebFileSystem* fileSystem() override;
123 bool canAccelerate2dCanvas() override; 124 bool canAccelerate2dCanvas() override;
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; 291 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_;
291 292
292 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED 293 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED
293 294
294 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); 295 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl);
295 }; 296 };
296 297
297 } // namespace content 298 } // namespace content
298 299
299 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 300 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/render_process_messages.h ('k') | content/renderer/renderer_blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698