OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_WEBKITPLATFORMSUPPORT_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/id_map.h" | |
10 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
11 #include "base/platform_file.h" | 12 #include "base/platform_file.h" |
12 #include "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
13 #include "content/common/webkitplatformsupport_impl.h" | 14 #include "content/common/webkitplatformsupport_impl.h" |
14 | 15 |
15 class RendererClipboardClient; | 16 class RendererClipboardClient; |
16 class WebSharedWorkerRepositoryImpl; | 17 class WebSharedWorkerRepositoryImpl; |
17 class WebFileSystemImpl; | 18 class WebFileSystemImpl; |
18 | 19 |
19 namespace IPC { | 20 namespace IPC { |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
80 virtual WebKit::WebGraphicsContext3D* createGraphicsContext3D() OVERRIDE; | 81 virtual WebKit::WebGraphicsContext3D* createGraphicsContext3D() OVERRIDE; |
81 virtual double audioHardwareSampleRate() OVERRIDE; | 82 virtual double audioHardwareSampleRate() OVERRIDE; |
82 virtual size_t audioHardwareBufferSize() OVERRIDE; | 83 virtual size_t audioHardwareBufferSize() OVERRIDE; |
83 virtual WebKit::WebAudioDevice* createAudioDevice( | 84 virtual WebKit::WebAudioDevice* createAudioDevice( |
84 size_t buffer_size, unsigned channels, double sample_rate, | 85 size_t buffer_size, unsigned channels, double sample_rate, |
85 WebKit::WebAudioDevice::RenderCallback* callback) OVERRIDE; | 86 WebKit::WebAudioDevice::RenderCallback* callback) OVERRIDE; |
86 virtual WebKit::WebBlobRegistry* blobRegistry() OVERRIDE; | 87 virtual WebKit::WebBlobRegistry* blobRegistry() OVERRIDE; |
87 virtual WebKit::WebString userAgent(const WebKit::WebURL& url) OVERRIDE; | 88 virtual WebKit::WebString userAgent(const WebKit::WebURL& url) OVERRIDE; |
88 virtual void GetPlugins(bool refresh, | 89 virtual void GetPlugins(bool refresh, |
89 std::vector<webkit::WebPluginInfo>* plugins) OVERRIDE; | 90 std::vector<webkit::WebPluginInfo>* plugins) OVERRIDE; |
91 virtual void didStartWorkerRunLoop( | |
92 const WebKit::WebWorkerRunLoop& runLoop) OVERRIDE; | |
93 virtual void didStopWorkerRunLoop( | |
94 const WebKit::WebWorkerRunLoop& runLoop) OVERRIDE; | |
90 | 95 |
91 private: | 96 private: |
92 bool CheckPreparsedJsCachingEnabled() const; | 97 bool CheckPreparsedJsCachingEnabled() const; |
93 | 98 |
94 // Helper function to send synchronous message from any thread. | 99 // Helper function to send synchronous message from any thread. |
95 static bool SendSyncMessageFromAnyThread(IPC::SyncMessage* msg); | 100 static bool SendSyncMessageFromAnyThread(IPC::SyncMessage* msg); |
96 | 101 |
97 scoped_ptr<RendererClipboardClient> clipboard_client_; | 102 scoped_ptr<RendererClipboardClient> clipboard_client_; |
98 scoped_ptr<webkit_glue::WebClipboardImpl> clipboard_; | 103 scoped_ptr<webkit_glue::WebClipboardImpl> clipboard_; |
99 | 104 |
(...skipping 14 matching lines...) Expand all Loading... | |
114 | 119 |
115 // Implementation of the WebSharedWorkerRepository APIs (provides an interface | 120 // Implementation of the WebSharedWorkerRepository APIs (provides an interface |
116 // to WorkerService on the browser thread. | 121 // to WorkerService on the browser thread. |
117 scoped_ptr<WebSharedWorkerRepositoryImpl> shared_worker_repository_; | 122 scoped_ptr<WebSharedWorkerRepositoryImpl> shared_worker_repository_; |
118 | 123 |
119 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; | 124 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; |
120 | 125 |
121 scoped_ptr<WebFileSystemImpl> web_file_system_; | 126 scoped_ptr<WebFileSystemImpl> web_file_system_; |
122 | 127 |
123 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 128 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
129 | |
130 // Only use this on the IO thread. | |
131 IDMap<void> webkit_to_chrome_thread_id_; | |
michaeln
2011/11/30 21:48:14
i don't see where this is used?
dgrogan
2011/11/30 23:25:18
Oops, remnant of a previous strategy. Deleted.
| |
124 }; | 132 }; |
125 | 133 |
126 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 134 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |