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

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

Issue 11413200: Refactored PPB_Flash GetSettings to the new pepper resource model (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | « webkit/plugins/ppapi/plugin_delegate.h ('k') | webkit/plugins/ppapi/ppb_flash_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 WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_ 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_
6 #define WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_ 6 #define WEBKIT_PLUGINS_PPAPI_PPB_FLASH_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 "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 28 matching lines...) Expand all
39 virtual int32_t Navigate(PP_Instance instance, 39 virtual int32_t Navigate(PP_Instance instance,
40 PP_Resource request_info, 40 PP_Resource request_info,
41 const char* target, 41 const char* target,
42 PP_Bool from_user_action) OVERRIDE; 42 PP_Bool from_user_action) OVERRIDE;
43 virtual int32_t Navigate(PP_Instance instance, 43 virtual int32_t Navigate(PP_Instance instance,
44 const ::ppapi::URLRequestInfoData& data, 44 const ::ppapi::URLRequestInfoData& data,
45 const char* target, 45 const char* target,
46 PP_Bool from_user_action) OVERRIDE; 46 PP_Bool from_user_action) OVERRIDE;
47 virtual PP_Bool IsRectTopmost(PP_Instance instance, 47 virtual PP_Bool IsRectTopmost(PP_Instance instance,
48 const PP_Rect* rect) OVERRIDE; 48 const PP_Rect* rect) OVERRIDE;
49 virtual PP_Var GetSetting(PP_Instance instance,
50 PP_FlashSetting setting) OVERRIDE;
51 49
52 private: 50 private:
53 PluginInstance* instance_; 51 PluginInstance* instance_;
54 52
55 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Impl); 53 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Impl);
56 }; 54 };
57 55
58 } // namespace ppapi 56 } // namespace ppapi
59 } // namespace webkit 57 } // namespace webkit
60 58
61 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_ 59 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/plugin_delegate.h ('k') | webkit/plugins/ppapi/ppb_flash_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698