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

Side by Side Diff: content/renderer/pepper/pepper_plugin_instance_impl.h

Issue 195893044: Add a PPB_Find_Private function to set the tickmarks on the page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
« no previous file with comments | « no previous file | content/renderer/pepper/pepper_plugin_instance_impl.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 CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_
6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_
7 7
8 #include <list> 8 #include <list>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 OVERRIDE; 391 OVERRIDE;
392 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) 392 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance)
393 OVERRIDE; 393 OVERRIDE;
394 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; 394 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE;
395 virtual void SetPluginToHandleFindRequests(PP_Instance) OVERRIDE; 395 virtual void SetPluginToHandleFindRequests(PP_Instance) OVERRIDE;
396 virtual void NumberOfFindResultsChanged(PP_Instance instance, 396 virtual void NumberOfFindResultsChanged(PP_Instance instance,
397 int32_t total, 397 int32_t total,
398 PP_Bool final_result) OVERRIDE; 398 PP_Bool final_result) OVERRIDE;
399 virtual void SelectedFindResultChanged(PP_Instance instance, 399 virtual void SelectedFindResultChanged(PP_Instance instance,
400 int32_t index) OVERRIDE; 400 int32_t index) OVERRIDE;
401 virtual void SetTickmarks(PP_Instance instance,
402 const PP_Rect* tickmarks,
403 uint32_t count) OVERRIDE;
401 virtual PP_Bool IsFullscreen(PP_Instance instance) OVERRIDE; 404 virtual PP_Bool IsFullscreen(PP_Instance instance) OVERRIDE;
402 virtual PP_Bool SetFullscreen(PP_Instance instance, 405 virtual PP_Bool SetFullscreen(PP_Instance instance,
403 PP_Bool fullscreen) OVERRIDE; 406 PP_Bool fullscreen) OVERRIDE;
404 virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) 407 virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size)
405 OVERRIDE; 408 OVERRIDE;
406 virtual ppapi::Resource* GetSingletonResource(PP_Instance instance, 409 virtual ppapi::Resource* GetSingletonResource(PP_Instance instance,
407 ppapi::SingletonResourceID id) OVERRIDE; 410 ppapi::SingletonResourceID id) OVERRIDE;
408 virtual int32_t RequestInputEvents(PP_Instance instance, 411 virtual int32_t RequestInputEvents(PP_Instance instance,
409 uint32_t event_classes) OVERRIDE; 412 uint32_t event_classes) OVERRIDE;
410 virtual int32_t RequestFilteringInputEvents(PP_Instance instance, 413 virtual int32_t RequestFilteringInputEvents(PP_Instance instance,
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
881 base::WeakPtrFactory<PepperPluginInstanceImpl> view_change_weak_ptr_factory_; 884 base::WeakPtrFactory<PepperPluginInstanceImpl> view_change_weak_ptr_factory_;
882 base::WeakPtrFactory<PepperPluginInstanceImpl> weak_factory_; 885 base::WeakPtrFactory<PepperPluginInstanceImpl> weak_factory_;
883 886
884 friend class PpapiPluginInstanceTest; 887 friend class PpapiPluginInstanceTest;
885 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl); 888 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl);
886 }; 889 };
887 890
888 } // namespace content 891 } // namespace content
889 892
890 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ 893 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/pepper/pepper_plugin_instance_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698