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

Side by Side Diff: webkit/plugins/ppapi/resource_creation_impl.cc

Issue 10386145: Add the necessary plumbing mechanisms to ensure proper WebGL support inside the <browser> tag, whic… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Shuffle EnterResource back out of the thunk layer Created 8 years, 6 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
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 #include "webkit/plugins/ppapi/resource_creation_impl.h" 5 #include "webkit/plugins/ppapi/resource_creation_impl.h"
6 6
7 #include "ppapi/c/pp_size.h" 7 #include "ppapi/c/pp_size.h"
8 #include "ppapi/shared_impl/ppb_audio_config_shared.h" 8 #include "ppapi/shared_impl/ppb_audio_config_shared.h"
9 #include "ppapi/shared_impl/private/ppb_browser_font_trusted_shared.h" 9 #include "ppapi/shared_impl/private/ppb_browser_font_trusted_shared.h"
10 #include "ppapi/shared_impl/ppb_input_event_shared.h" 10 #include "ppapi/shared_impl/ppb_input_event_shared.h"
(...skipping 27 matching lines...) Expand all
38 #include "webkit/plugins/ppapi/ppb_video_decoder_impl.h" 38 #include "webkit/plugins/ppapi/ppb_video_decoder_impl.h"
39 #include "webkit/plugins/ppapi/ppb_video_layer_impl.h" 39 #include "webkit/plugins/ppapi/ppb_video_layer_impl.h"
40 #include "webkit/plugins/ppapi/ppb_websocket_impl.h" 40 #include "webkit/plugins/ppapi/ppb_websocket_impl.h"
41 #include "webkit/plugins/ppapi/ppb_x509_certificate_private_impl.h" 41 #include "webkit/plugins/ppapi/ppb_x509_certificate_private_impl.h"
42 #include "webkit/plugins/ppapi/resource_helper.h" 42 #include "webkit/plugins/ppapi/resource_helper.h"
43 43
44 using ppapi::InputEventData; 44 using ppapi::InputEventData;
45 using ppapi::PPB_InputEvent_Shared; 45 using ppapi::PPB_InputEvent_Shared;
46 using ppapi::PPB_ResourceArray_Shared; 46 using ppapi::PPB_ResourceArray_Shared;
47 using ppapi::StringVar; 47 using ppapi::StringVar;
48 using ppapi::thunk::PPB_Graphics3D_API;
Fady Samuel 2012/05/28 14:11:45 Is this necessary? If not, please get rid of this.
48 49
49 namespace webkit { 50 namespace webkit {
50 namespace ppapi { 51 namespace ppapi {
51 52
52 ResourceCreationImpl::ResourceCreationImpl(PluginInstance* instance) { 53 ResourceCreationImpl::ResourceCreationImpl(PluginInstance* instance) {
53 } 54 }
54 55
55 ResourceCreationImpl::~ResourceCreationImpl() { 56 ResourceCreationImpl::~ResourceCreationImpl() {
56 } 57 }
57 58
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 wheel_delta, wheel_ticks, scroll_by_page); 319 wheel_delta, wheel_ticks, scroll_by_page);
319 } 320 }
320 321
321 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( 322 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate(
322 PP_Instance instance) { 323 PP_Instance instance) {
323 return PPB_X509Certificate_Private_Impl::CreateResource(instance); 324 return PPB_X509Certificate_Private_Impl::CreateResource(instance);
324 } 325 }
325 326
326 } // namespace ppapi 327 } // namespace ppapi
327 } // namespace webkit 328 } // namespace webkit
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698