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

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

Issue 1097393007: Update {virtual,override} to follow C++11 style in ppapi. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Split off one file into separate review. Created 5 years, 8 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
« no previous file with comments | « ppapi/proxy/flash_font_file_resource.h ('k') | ppapi/proxy/flash_menu_resource.h » ('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_FLASH_FULLSCREEN_RESOURCE_H_ 5 #ifndef PPAPI_PROXY_FLASH_FULLSCREEN_RESOURCE_H_
6 #define PPAPI_PROXY_FLASH_FULLSCREEN_RESOURCE_H_ 6 #define PPAPI_PROXY_FLASH_FULLSCREEN_RESOURCE_H_
7 7
8 #include "ppapi/proxy/connection.h" 8 #include "ppapi/proxy/connection.h"
9 #include "ppapi/proxy/plugin_resource.h" 9 #include "ppapi/proxy/plugin_resource.h"
10 #include "ppapi/thunk/ppb_flash_fullscreen_api.h" 10 #include "ppapi/thunk/ppb_flash_fullscreen_api.h"
11 11
12 namespace ppapi { 12 namespace ppapi {
13 namespace proxy { 13 namespace proxy {
14 14
15 class FlashFullscreenResource 15 class FlashFullscreenResource
16 : public PluginResource, 16 : public PluginResource,
17 public thunk::PPB_Flash_Fullscreen_API { 17 public thunk::PPB_Flash_Fullscreen_API {
18 public: 18 public:
19 FlashFullscreenResource(Connection connection, 19 FlashFullscreenResource(Connection connection,
20 PP_Instance instance); 20 PP_Instance instance);
21 virtual ~FlashFullscreenResource(); 21 ~FlashFullscreenResource() override;
22 22
23 // Resource overrides. 23 // Resource overrides.
24 virtual thunk::PPB_Flash_Fullscreen_API* 24 thunk::PPB_Flash_Fullscreen_API* AsPPB_Flash_Fullscreen_API() override;
25 AsPPB_Flash_Fullscreen_API() override;
26 25
27 // PPB_Flash_Fullscreen_API implementation. 26 // PPB_Flash_Fullscreen_API implementation.
28 virtual PP_Bool IsFullscreen(PP_Instance instance) override; 27 PP_Bool IsFullscreen(PP_Instance instance) override;
29 virtual PP_Bool SetFullscreen(PP_Instance instance, 28 PP_Bool SetFullscreen(PP_Instance instance, PP_Bool fullscreen) override;
30 PP_Bool fullscreen) override; 29 void SetLocalIsFullscreen(PP_Instance instance,
31 virtual void SetLocalIsFullscreen(PP_Instance instance, 30 PP_Bool is_fullscreen) override;
32 PP_Bool is_fullscreen) override;
33 31
34 private: 32 private:
35 PP_Bool is_fullscreen_; 33 PP_Bool is_fullscreen_;
36 34
37 DISALLOW_COPY_AND_ASSIGN(FlashFullscreenResource); 35 DISALLOW_COPY_AND_ASSIGN(FlashFullscreenResource);
38 }; 36 };
39 37
40 } // namespace proxy 38 } // namespace proxy
41 } // namespace ppapi 39 } // namespace ppapi
42 40
43 #endif // PPAPI_PROXY_FLASH_FULLSCREEN_RESOURCE_H_ 41 #endif // PPAPI_PROXY_FLASH_FULLSCREEN_RESOURCE_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/flash_font_file_resource.h ('k') | ppapi/proxy/flash_menu_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698