| OLD | NEW |
| 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 "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/id_map.h" | 9 #include "base/id_map.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 long databaseGetFileAttributes( | 93 long databaseGetFileAttributes( |
| 94 const blink::WebString& vfs_file_name) override; | 94 const blink::WebString& vfs_file_name) override; |
| 95 long long databaseGetFileSize(const blink::WebString& vfs_file_name) override; | 95 long long databaseGetFileSize(const blink::WebString& vfs_file_name) override; |
| 96 long long databaseGetSpaceAvailableForOrigin( | 96 long long databaseGetSpaceAvailableForOrigin( |
| 97 const blink::WebString& origin_identifier) override; | 97 const blink::WebString& origin_identifier) override; |
| 98 bool databaseSetFileSize(const blink::WebString& vfs_file_name, | 98 bool databaseSetFileSize(const blink::WebString& vfs_file_name, |
| 99 long long size) override; | 99 long long size) override; |
| 100 blink::WebString signedPublicKeyAndChallengeString( | 100 blink::WebString signedPublicKeyAndChallengeString( |
| 101 unsigned key_size_index, | 101 unsigned key_size_index, |
| 102 const blink::WebString& challenge, | 102 const blink::WebString& challenge, |
| 103 const blink::WebURL& url) override; | 103 const blink::WebURL& url, |
| 104 const blink::WebURL& parent_url) override; |
| 104 void getPluginList(bool refresh, | 105 void getPluginList(bool refresh, |
| 105 blink::WebPluginListBuilder* builder) override; | 106 blink::WebPluginListBuilder* builder) override; |
| 106 blink::WebPublicSuffixList* publicSuffixList() override; | 107 blink::WebPublicSuffixList* publicSuffixList() override; |
| 107 void screenColorProfile(blink::WebVector<char>* to_profile) override; | 108 void screenColorProfile(blink::WebVector<char>* to_profile) override; |
| 108 blink::WebScrollbarBehavior* scrollbarBehavior() override; | 109 blink::WebScrollbarBehavior* scrollbarBehavior() override; |
| 109 blink::WebIDBFactory* idbFactory() override; | 110 blink::WebIDBFactory* idbFactory() override; |
| 110 blink::WebServiceWorkerCacheStorage* cacheStorage( | 111 blink::WebServiceWorkerCacheStorage* cacheStorage( |
| 111 const blink::WebString& origin_identifier) override; | 112 const blink::WebString& origin_identifier) override; |
| 112 blink::WebFileSystem* fileSystem() override; | 113 blink::WebFileSystem* fileSystem() override; |
| 113 bool canAccelerate2dCanvas() override; | 114 bool canAccelerate2dCanvas() override; |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 279 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
| 279 | 280 |
| 280 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED | 281 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED |
| 281 | 282 |
| 282 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 283 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 283 }; | 284 }; |
| 284 | 285 |
| 285 } // namespace content | 286 } // namespace content |
| 286 | 287 |
| 287 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 288 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |