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

Side by Side Diff: ppapi/thunk/ppb_instance_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_INSTANCE_API_H_ 5 #ifndef PPAPI_THUNK_INSTANCE_API_H_
6 #define PPAPI_THUNK_INSTANCE_API_H_ 6 #define PPAPI_THUNK_INSTANCE_API_H_
7 7
8 #include "ppapi/c/ppb_instance.h" 8 #include "ppapi/c/ppb_instance.h"
9 #include "ppapi/c/pp_bool.h" 9 #include "ppapi/c/pp_bool.h"
10 #include "ppapi/c/pp_size.h" 10 #include "ppapi/c/pp_size.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 // Zoom. 47 // Zoom.
48 virtual void ZoomChanged(PP_Instance instance, double factor) = 0; 48 virtual void ZoomChanged(PP_Instance instance, double factor) = 0;
49 virtual void ZoomLimitsChanged(PP_Instance instance, 49 virtual void ZoomLimitsChanged(PP_Instance instance,
50 double minimum_factor, 50 double minimum_factor,
51 double maximium_factor) = 0; 51 double maximium_factor) = 0;
52 52
53 // QueryPolicy. 53 // QueryPolicy.
54 virtual void SubscribeToPolicyUpdates(PP_Instance instance) = 0; 54 virtual void SubscribeToPolicyUpdates(PP_Instance instance) = 0;
55 55
56 static const ::pp::proxy::InterfaceID interface_id = 56 static const proxy::InterfaceID interface_id =
57 ::pp::proxy::INTERFACE_ID_PPB_INSTANCE; 57 proxy::INTERFACE_ID_PPB_INSTANCE;
58 }; 58 };
59 59
60 } // namespace thunk 60 } // namespace thunk
61 } // namespace ppapi 61 } // namespace ppapi
62 62
63 #endif // PPAPI_THUNK_INSTANCE_API_H_ 63 #endif // PPAPI_THUNK_INSTANCE_API_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698