| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 const blink::WebString& challenge, | 113 const blink::WebString& challenge, |
| 114 const blink::WebURL& url, | 114 const blink::WebURL& url, |
| 115 const blink::WebURL& top_origin) override; | 115 const blink::WebURL& top_origin) override; |
| 116 void getPluginList(bool refresh, | 116 void getPluginList(bool refresh, |
| 117 blink::WebPluginListBuilder* builder) override; | 117 blink::WebPluginListBuilder* builder) override; |
| 118 blink::WebPublicSuffixList* publicSuffixList() override; | 118 blink::WebPublicSuffixList* publicSuffixList() override; |
| 119 void screenColorProfile(blink::WebVector<char>* to_profile) override; | 119 void screenColorProfile(blink::WebVector<char>* to_profile) override; |
| 120 blink::WebScrollbarBehavior* scrollbarBehavior() override; | 120 blink::WebScrollbarBehavior* scrollbarBehavior() override; |
| 121 blink::WebIDBFactory* idbFactory() override; | 121 blink::WebIDBFactory* idbFactory() override; |
| 122 blink::WebServiceWorkerCacheStorage* cacheStorage( | 122 blink::WebServiceWorkerCacheStorage* cacheStorage( |
| 123 const blink::WebString& origin_identifier) override; | 123 const blink::WebSecurityOrigin& security_origin) override; |
| 124 blink::WebFileSystem* fileSystem() override; | 124 blink::WebFileSystem* fileSystem() override; |
| 125 bool canAccelerate2dCanvas() override; | 125 bool canAccelerate2dCanvas() override; |
| 126 bool isThreadedCompositingEnabled() override; | 126 bool isThreadedCompositingEnabled() override; |
| 127 bool isThreadedAnimationEnabled() override; | 127 bool isThreadedAnimationEnabled() override; |
| 128 double audioHardwareSampleRate() override; | 128 double audioHardwareSampleRate() override; |
| 129 size_t audioHardwareBufferSize() override; | 129 size_t audioHardwareBufferSize() override; |
| 130 unsigned audioHardwareOutputChannels() override; | 130 unsigned audioHardwareOutputChannels() override; |
| 131 blink::WebDatabaseObserver* databaseObserver() override; | 131 blink::WebDatabaseObserver* databaseObserver() override; |
| 132 | 132 |
| 133 blink::WebAudioDevice* createAudioDevice( | 133 blink::WebAudioDevice* createAudioDevice( |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED | 294 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED |
| 295 | 295 |
| 296 TrialTokenValidator trial_token_validator_; | 296 TrialTokenValidator trial_token_validator_; |
| 297 | 297 |
| 298 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 298 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 299 }; | 299 }; |
| 300 | 300 |
| 301 } // namespace content | 301 } // namespace content |
| 302 | 302 |
| 303 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 303 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |