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

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

Issue 9639017: Revert 125629 - Adding a skeleton MediaStreamCenter. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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 | Annotate | Revision Log
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_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/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 virtual WebKit::WebAudioDevice* createAudioDevice( 87 virtual WebKit::WebAudioDevice* createAudioDevice(
88 size_t buffer_size, unsigned channels, double sample_rate, 88 size_t buffer_size, unsigned channels, double sample_rate,
89 WebKit::WebAudioDevice::RenderCallback* callback) OVERRIDE; 89 WebKit::WebAudioDevice::RenderCallback* callback) OVERRIDE;
90 virtual WebKit::WebBlobRegistry* blobRegistry() OVERRIDE; 90 virtual WebKit::WebBlobRegistry* blobRegistry() OVERRIDE;
91 virtual void sampleGamepads(WebKit::WebGamepads&) OVERRIDE; 91 virtual void sampleGamepads(WebKit::WebGamepads&) OVERRIDE;
92 virtual WebKit::WebString userAgent(const WebKit::WebURL& url) OVERRIDE; 92 virtual WebKit::WebString userAgent(const WebKit::WebURL& url) OVERRIDE;
93 virtual void GetPlugins(bool refresh, 93 virtual void GetPlugins(bool refresh,
94 std::vector<webkit::WebPluginInfo>* plugins) OVERRIDE; 94 std::vector<webkit::WebPluginInfo>* plugins) OVERRIDE;
95 virtual WebKit::WebPeerConnectionHandler* createPeerConnectionHandler( 95 virtual WebKit::WebPeerConnectionHandler* createPeerConnectionHandler(
96 WebKit::WebPeerConnectionHandlerClient* client) OVERRIDE; 96 WebKit::WebPeerConnectionHandlerClient* client) OVERRIDE;
97 virtual WebKit::WebMediaStreamCenter* createMediaStreamCenter(
98 WebKit::WebMediaStreamCenterClient* client) OVERRIDE;
99 97
100 private: 98 private:
101 bool CheckPreparsedJsCachingEnabled() const; 99 bool CheckPreparsedJsCachingEnabled() const;
102 100
103 // Helper function to send synchronous message from any thread. 101 // Helper function to send synchronous message from any thread.
104 static bool SendSyncMessageFromAnyThread(IPC::SyncMessage* msg); 102 static bool SendSyncMessageFromAnyThread(IPC::SyncMessage* msg);
105 103
106 scoped_ptr<RendererClipboardClient> clipboard_client_; 104 scoped_ptr<RendererClipboardClient> clipboard_client_;
107 scoped_ptr<webkit_glue::WebClipboardImpl> clipboard_; 105 scoped_ptr<webkit_glue::WebClipboardImpl> clipboard_;
108 106
(...skipping 19 matching lines...) Expand all
128 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; 126 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_;
129 127
130 scoped_ptr<WebFileSystemImpl> web_file_system_; 128 scoped_ptr<WebFileSystemImpl> web_file_system_;
131 129
132 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; 130 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_;
133 131
134 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; 132 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_;
135 }; 133 };
136 134
137 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ 135 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | content/renderer/renderer_webkitplatformsupport_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698