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

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

Issue 11421066: Refactor PPB_Flash_Fullscreen to the new 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/ppapi_plugin_instance.cc ('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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 PP_DirContents_Dev** contents) OVERRIDE; 75 PP_DirContents_Dev** contents) OVERRIDE;
76 virtual int32_t CreateTemporaryFile(PP_Instance instance, 76 virtual int32_t CreateTemporaryFile(PP_Instance instance,
77 PP_FileHandle* file) OVERRIDE; 77 PP_FileHandle* file) OVERRIDE;
78 virtual int32_t OpenFileRef(PP_Instance instance, 78 virtual int32_t OpenFileRef(PP_Instance instance,
79 PP_Resource file_ref, 79 PP_Resource file_ref,
80 int32_t mode, 80 int32_t mode,
81 PP_FileHandle* file) OVERRIDE; 81 PP_FileHandle* file) OVERRIDE;
82 virtual int32_t QueryFileRef(PP_Instance instance, 82 virtual int32_t QueryFileRef(PP_Instance instance,
83 PP_Resource file_ref, 83 PP_Resource file_ref,
84 PP_FileInfo* info) OVERRIDE; 84 PP_FileInfo* info) OVERRIDE;
85 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) OVERRIDE;
86 virtual PP_Bool FlashSetFullscreen(PP_Instance instance,
87 PP_Bool fullscreen) OVERRIDE;
88 virtual PP_Bool FlashGetScreenSize(PP_Instance instance,
89 PP_Size* size) OVERRIDE;
90 85
91 private: 86 private:
92 PluginInstance* instance_; 87 PluginInstance* instance_;
93 88
94 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Impl); 89 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Impl);
95 }; 90 };
96 91
97 } // namespace ppapi 92 } // namespace ppapi
98 } // namespace webkit 93 } // namespace webkit
99 94
100 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_ 95 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppapi_plugin_instance.cc ('k') | webkit/plugins/ppapi/ppb_flash_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698