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

Side by Side Diff: content/renderer/pepper/pepper_plugin_delegate_impl.h

Issue 11053003: Migrate Graphics2D to new design. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: temp dependencies Created 8 years, 1 month 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_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_
6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 virtual PlatformAudioOutput* CreateAudioOutput( 199 virtual PlatformAudioOutput* CreateAudioOutput(
200 uint32_t sample_rate, 200 uint32_t sample_rate,
201 uint32_t sample_count, 201 uint32_t sample_count,
202 PlatformAudioOutputClient* client) OVERRIDE; 202 PlatformAudioOutputClient* client) OVERRIDE;
203 virtual PlatformAudioInput* CreateAudioInput( 203 virtual PlatformAudioInput* CreateAudioInput(
204 const std::string& device_id, 204 const std::string& device_id,
205 uint32_t sample_rate, 205 uint32_t sample_rate,
206 uint32_t sample_count, 206 uint32_t sample_count,
207 PlatformAudioInputClient* client) OVERRIDE; 207 PlatformAudioInputClient* client) OVERRIDE;
208 virtual PlatformImage2D* CreateImage2D(int width, int height) OVERRIDE; 208 virtual PlatformImage2D* CreateImage2D(int width, int height) OVERRIDE;
209 virtual PlatformGraphics2D* GetGraphics2D(
210 webkit::ppapi::PluginInstance* instance,
211 PP_Resource resource) OVERRIDE;
209 virtual PlatformContext3D* CreateContext3D() OVERRIDE; 212 virtual PlatformContext3D* CreateContext3D() OVERRIDE;
210 virtual void ReparentContext(PlatformContext3D*) OVERRIDE; 213 virtual void ReparentContext(PlatformContext3D*) OVERRIDE;
211 virtual PlatformVideoCapture* CreateVideoCapture( 214 virtual PlatformVideoCapture* CreateVideoCapture(
212 const std::string& device_id, 215 const std::string& device_id,
213 PlatformVideoCaptureEventHandler* handler) OVERRIDE; 216 PlatformVideoCaptureEventHandler* handler) OVERRIDE;
214 virtual PlatformVideoDecoder* CreateVideoDecoder( 217 virtual PlatformVideoDecoder* CreateVideoDecoder(
215 media::VideoDecodeAccelerator::Client* client, 218 media::VideoDecodeAccelerator::Client* client,
216 int32 command_buffer_route_id) OVERRIDE; 219 int32 command_buffer_route_id) OVERRIDE;
217 virtual Broker* ConnectToBroker( 220 virtual Broker* ConnectToBroker(
218 webkit::ppapi::PPB_Broker_Impl* client) OVERRIDE; 221 webkit::ppapi::PPB_Broker_Impl* client) OVERRIDE;
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
545 548
546 scoped_ptr<PepperDeviceEnumerationEventHandler> 549 scoped_ptr<PepperDeviceEnumerationEventHandler>
547 device_enumeration_event_handler_; 550 device_enumeration_event_handler_;
548 551
549 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); 552 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl);
550 }; 553 };
551 554
552 } // namespace content 555 } // namespace content
553 556
554 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ 557 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698