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

Side by Side Diff: ppapi/proxy/ppb_instance_proxy.h

Issue 9360045: Rename PPB_Font to PPB_BrowserFont_Trusted. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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
« no previous file with comments | « ppapi/proxy/ppb_font_proxy.cc ('k') | ppapi/proxy/ppb_instance_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ 5 #ifndef PPAPI_PROXY_PPB_INSTANCE_PROXY_H_
6 #define PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ 6 #define PPAPI_PROXY_PPB_INSTANCE_PROXY_H_
7 7
8 #include "ppapi/c/pp_instance.h" 8 #include "ppapi/c/pp_instance.h"
9 #include "ppapi/c/pp_resource.h" 9 #include "ppapi/c/pp_resource.h"
10 #include "ppapi/c/pp_var.h" 10 #include "ppapi/c/pp_var.h"
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE; 51 virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE;
52 virtual PP_Var ExecuteScript(PP_Instance instance, 52 virtual PP_Var ExecuteScript(PP_Instance instance,
53 PP_Var script, 53 PP_Var script,
54 PP_Var* exception) OVERRIDE; 54 PP_Var* exception) OVERRIDE;
55 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; 55 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE;
56 virtual void NumberOfFindResultsChanged(PP_Instance instance, 56 virtual void NumberOfFindResultsChanged(PP_Instance instance,
57 int32_t total, 57 int32_t total,
58 PP_Bool final_result) OVERRIDE; 58 PP_Bool final_result) OVERRIDE;
59 virtual void SelectedFindResultChanged(PP_Instance instance, 59 virtual void SelectedFindResultChanged(PP_Instance instance,
60 int32_t index) OVERRIDE; 60 int32_t index) OVERRIDE;
61 virtual PP_Var GetFontFamilies(PP_Instance instance) OVERRIDE;
61 virtual PP_Bool SetFullscreen(PP_Instance instance, 62 virtual PP_Bool SetFullscreen(PP_Instance instance,
62 PP_Bool fullscreen) OVERRIDE; 63 PP_Bool fullscreen) OVERRIDE;
63 virtual PP_Bool GetScreenSize(PP_Instance instance, 64 virtual PP_Bool GetScreenSize(PP_Instance instance,
64 PP_Size* size) OVERRIDE; 65 PP_Size* size) OVERRIDE;
65 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) OVERRIDE; 66 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) OVERRIDE;
66 virtual PP_Bool FlashSetFullscreen(PP_Instance instance, 67 virtual PP_Bool FlashSetFullscreen(PP_Instance instance,
67 PP_Bool fullscreen) OVERRIDE; 68 PP_Bool fullscreen) OVERRIDE;
68 virtual PP_Bool FlashGetScreenSize(PP_Instance instance, PP_Size* size) 69 virtual PP_Bool FlashGetScreenSize(PP_Instance instance, PP_Size* size)
69 OVERRIDE; 70 OVERRIDE;
70 virtual void SampleGamepads(PP_Instance instance, PP_GamepadsData_Dev* data) 71 virtual void SampleGamepads(PP_Instance instance, PP_GamepadsData_Dev* data)
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 void MouseLockCompleteInHost(int32_t result, PP_Instance instance); 156 void MouseLockCompleteInHost(int32_t result, PP_Instance instance);
156 157
157 pp::CompletionCallbackFactory<PPB_Instance_Proxy, 158 pp::CompletionCallbackFactory<PPB_Instance_Proxy,
158 ProxyNonThreadSafeRefCount> callback_factory_; 159 ProxyNonThreadSafeRefCount> callback_factory_;
159 }; 160 };
160 161
161 } // namespace proxy 162 } // namespace proxy
162 } // namespace ppapi 163 } // namespace ppapi
163 164
164 #endif // PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ 165 #endif // PPAPI_PROXY_PPB_INSTANCE_PROXY_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppb_font_proxy.cc ('k') | ppapi/proxy/ppb_instance_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698