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

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

Issue 9693024: Add the PPAPI X509 Certificate interface and implementation. (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 WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ 5 #ifndef WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_
6 #define WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ 6 #define WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "ppapi/shared_impl/function_group_base.h" 10 #include "ppapi/shared_impl/function_group_base.h"
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 virtual PP_Resource CreateVideoLayer(PP_Instance instance, 119 virtual PP_Resource CreateVideoLayer(PP_Instance instance,
120 PP_VideoLayerMode_Dev mode) OVERRIDE; 120 PP_VideoLayerMode_Dev mode) OVERRIDE;
121 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; 121 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE;
122 virtual PP_Resource CreateWheelInputEvent( 122 virtual PP_Resource CreateWheelInputEvent(
123 PP_Instance instance, 123 PP_Instance instance,
124 PP_TimeTicks time_stamp, 124 PP_TimeTicks time_stamp,
125 uint32_t modifiers, 125 uint32_t modifiers,
126 const PP_FloatPoint* wheel_delta, 126 const PP_FloatPoint* wheel_delta,
127 const PP_FloatPoint* wheel_ticks, 127 const PP_FloatPoint* wheel_ticks,
128 PP_Bool scroll_by_page) OVERRIDE; 128 PP_Bool scroll_by_page) OVERRIDE;
129 virtual PP_Resource CreateX509Certificate(PP_Instance instance) OVERRIDE;
129 130
130 private: 131 private:
131 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); 132 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl);
132 }; 133 };
133 134
134 } // namespace ppapi 135 } // namespace ppapi
135 } // namespace webkit 136 } // namespace webkit
136 137
137 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ 138 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698