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

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

Issue 11578038: Convert pepper font list to new resource system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merged Created 8 years 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/thunk/ppb_instance_api.h ('k') | webkit/plugins/ppapi/ppapi_plugin_instance.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 WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_
6 #define WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ 6 #define WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 virtual PP_Var GetWindowObject(PP_Instance instance) OVERRIDE; 356 virtual PP_Var GetWindowObject(PP_Instance instance) OVERRIDE;
357 virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE; 357 virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE;
358 virtual PP_Var ExecuteScript(PP_Instance instance, 358 virtual PP_Var ExecuteScript(PP_Instance instance,
359 PP_Var script, 359 PP_Var script,
360 PP_Var* exception) OVERRIDE; 360 PP_Var* exception) OVERRIDE;
361 virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance) 361 virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance)
362 OVERRIDE; 362 OVERRIDE;
363 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) 363 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance)
364 OVERRIDE; 364 OVERRIDE;
365 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; 365 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE;
366 virtual PP_Var GetFontFamilies(PP_Instance instance) OVERRIDE;
367 virtual void NumberOfFindResultsChanged(PP_Instance instance, 366 virtual void NumberOfFindResultsChanged(PP_Instance instance,
368 int32_t total, 367 int32_t total,
369 PP_Bool final_result) OVERRIDE; 368 PP_Bool final_result) OVERRIDE;
370 virtual void SelectedFindResultChanged(PP_Instance instance, 369 virtual void SelectedFindResultChanged(PP_Instance instance,
371 int32_t index) OVERRIDE; 370 int32_t index) OVERRIDE;
372 virtual PP_Bool SetFullscreen(PP_Instance instance, 371 virtual PP_Bool SetFullscreen(PP_Instance instance,
373 PP_Bool fullscreen) OVERRIDE; 372 PP_Bool fullscreen) OVERRIDE;
374 virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) 373 virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size)
375 OVERRIDE; 374 OVERRIDE;
376 virtual ::ppapi::thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE; 375 virtual ::ppapi::thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE;
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
775 // calls and handles PPB_ContentDecryptor_Private calls. 774 // calls and handles PPB_ContentDecryptor_Private calls.
776 scoped_ptr<ContentDecryptorDelegate> content_decryptor_delegate_; 775 scoped_ptr<ContentDecryptorDelegate> content_decryptor_delegate_;
777 776
778 DISALLOW_COPY_AND_ASSIGN(PluginInstance); 777 DISALLOW_COPY_AND_ASSIGN(PluginInstance);
779 }; 778 };
780 779
781 } // namespace ppapi 780 } // namespace ppapi
782 } // namespace webkit 781 } // namespace webkit
783 782
784 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ 783 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_
OLDNEW
« no previous file with comments | « ppapi/thunk/ppb_instance_api.h ('k') | webkit/plugins/ppapi/ppapi_plugin_instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698