OLD | NEW |
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_CPP_PRIVATE_FLASH_H_ | 5 #ifndef PPAPI_CPP_PRIVATE_FLASH_H_ |
6 #define PPAPI_CPP_PRIVATE_FLASH_H_ | 6 #define PPAPI_CPP_PRIVATE_FLASH_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "ppapi/c/pp_stdint.h" | 10 #include "ppapi/c/pp_stdint.h" |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 bool from_user_action); | 50 bool from_user_action); |
51 static void RunMessageLoop(const InstanceHandle& instance); | 51 static void RunMessageLoop(const InstanceHandle& instance); |
52 static void QuitMessageLoop(const InstanceHandle& instance); | 52 static void QuitMessageLoop(const InstanceHandle& instance); |
53 static double GetLocalTimeZoneOffset(const InstanceHandle& instance, | 53 static double GetLocalTimeZoneOffset(const InstanceHandle& instance, |
54 PP_Time t); | 54 PP_Time t); |
55 static Var GetCommandLineArgs(Module* module); | 55 static Var GetCommandLineArgs(Module* module); |
56 static void PreloadFontWin(const void* logfontw); | 56 static void PreloadFontWin(const void* logfontw); |
57 static bool IsRectTopmost(const InstanceHandle& instance, const Rect& rect); | 57 static bool IsRectTopmost(const InstanceHandle& instance, const Rect& rect); |
58 static int32_t InvokePrinting(const InstanceHandle& instance); | 58 static int32_t InvokePrinting(const InstanceHandle& instance); |
59 static void UpdateActivity(const InstanceHandle& instance); | 59 static void UpdateActivity(const InstanceHandle& instance); |
60 | 60 static Var GetDeviceID(const InstanceHandle& instance); |
61 }; | 61 }; |
62 | 62 |
63 } // namespace flash | 63 } // namespace flash |
64 } // namespace pp | 64 } // namespace pp |
65 | 65 |
66 #endif // PPAPI_CPP_PRIVATE_FLASH_H_ | 66 #endif // PPAPI_CPP_PRIVATE_FLASH_H_ |
OLD | NEW |