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

Side by Side Diff: ppapi/thunk/resource_creation_api.h

Issue 7655002: Convert the pp::proxy namespace to the ppapi::proxy namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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) 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 PPAPI_THUNK_RESOURCE_CREATION_API_H_ 5 #ifndef PPAPI_THUNK_RESOURCE_CREATION_API_H_
6 #define PPAPI_THUNK_RESOURCE_CREATION_API_H_ 6 #define PPAPI_THUNK_RESOURCE_CREATION_API_H_
7 7
8 #include "ppapi/c/dev/ppb_file_chooser_dev.h" 8 #include "ppapi/c/dev/ppb_file_chooser_dev.h"
9 #include "ppapi/c/dev/ppb_graphics_3d_dev.h" 9 #include "ppapi/c/dev/ppb_graphics_3d_dev.h"
10 #include "ppapi/c/dev/ppb_video_layer_dev.h" 10 #include "ppapi/c/dev/ppb_video_layer_dev.h"
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 virtual PP_Resource CreateVideoLayer(PP_Instance instance, 118 virtual PP_Resource CreateVideoLayer(PP_Instance instance,
119 PP_VideoLayerMode_Dev mode) = 0; 119 PP_VideoLayerMode_Dev mode) = 0;
120 virtual PP_Resource CreateWheelInputEvent( 120 virtual PP_Resource CreateWheelInputEvent(
121 PP_Instance instance, 121 PP_Instance instance,
122 PP_TimeTicks time_stamp, 122 PP_TimeTicks time_stamp,
123 uint32_t modifiers, 123 uint32_t modifiers,
124 const PP_FloatPoint* wheel_delta, 124 const PP_FloatPoint* wheel_delta,
125 const PP_FloatPoint* wheel_ticks, 125 const PP_FloatPoint* wheel_ticks,
126 PP_Bool scroll_by_page) = 0; 126 PP_Bool scroll_by_page) = 0;
127 127
128 static const ::pp::proxy::InterfaceID interface_id = 128 static const proxy::InterfaceID interface_id =
129 ::pp::proxy::INTERFACE_ID_RESOURCE_CREATION; 129 proxy::INTERFACE_ID_RESOURCE_CREATION;
130 }; 130 };
131 131
132 } // namespace thunk 132 } // namespace thunk
133 } // namespace ppapi 133 } // namespace ppapi
134 134
135 #endif // PPAPI_THUNK_RESOURCE_CREATION_API_H_ 135 #endif // PPAPI_THUNK_RESOURCE_CREATION_API_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698