OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_CPP_PRIVATE_FLASH_MENU_H_ | 5 #ifndef PPAPI_CPP_PRIVATE_FLASH_MENU_H_ |
6 #define PPAPI_CPP_PRIVATE_FLASH_MENU_H_ | 6 #define PPAPI_CPP_PRIVATE_FLASH_MENU_H_ |
7 | 7 |
8 #include "ppapi/c/private/ppb_flash_menu.h" | 8 #include "ppapi/c/private/ppb_flash_menu.h" |
9 #include "ppapi/cpp/resource.h" | 9 #include "ppapi/cpp/resource.h" |
10 | 10 |
11 namespace pp { | 11 namespace pp { |
12 | 12 |
13 class CompletionCallback; | 13 class CompletionCallback; |
14 class Instance; | 14 class InstanceHandle; |
15 class Point; | 15 class Point; |
16 | 16 |
17 namespace flash { | 17 namespace flash { |
18 | 18 |
19 class Menu : public Resource { | 19 class Menu : public Resource { |
20 public: | 20 public: |
21 // TODO(viettrungluu): Write a proper C++ wrapper of |PP_Flash_Menu|. | 21 // TODO(viettrungluu): Write a proper C++ wrapper of |PP_Flash_Menu|. |
22 Menu(const Instance& instance, const struct PP_Flash_Menu* menu_data); | 22 Menu(const InstanceHandle& instance, const struct PP_Flash_Menu* menu_data); |
23 | 23 |
24 int32_t Show(const Point& location, | 24 int32_t Show(const Point& location, |
25 int32_t* selected_id, | 25 int32_t* selected_id, |
26 const CompletionCallback& cc); | 26 const CompletionCallback& cc); |
27 }; | 27 }; |
28 | 28 |
29 } // namespace flash | 29 } // namespace flash |
30 } // namespace pp | 30 } // namespace pp |
31 | 31 |
32 #endif // PPAPI_CPP_PRIVATE_FLASH_H_ | 32 #endif // PPAPI_CPP_PRIVATE_FLASH_H_ |
OLD | NEW |