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_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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 const PP_Point glyph_advances[]); | 44 const PP_Point glyph_advances[]); |
45 static Var GetProxyForURL(Instance* instance, const std::string& url); | 45 static Var GetProxyForURL(Instance* instance, const std::string& url); |
46 static int32_t Navigate(const URLRequestInfo& request_info, | 46 static int32_t Navigate(const URLRequestInfo& request_info, |
47 const std::string& target, | 47 const std::string& target, |
48 bool from_user_action); | 48 bool from_user_action); |
49 static void RunMessageLoop(Instance* instance); | 49 static void RunMessageLoop(Instance* instance); |
50 static void QuitMessageLoop(Instance* instance); | 50 static void QuitMessageLoop(Instance* instance); |
51 static double GetLocalTimeZoneOffset(Instance* instance, PP_Time t); | 51 static double GetLocalTimeZoneOffset(Instance* instance, PP_Time t); |
52 static Var GetCommandLineArgs(Module* module); | 52 static Var GetCommandLineArgs(Module* module); |
53 static void PreloadFontWin(const void* logfontw); | 53 static void PreloadFontWin(const void* logfontw); |
| 54 static bool IsRectTopmost(Instance* instance, const Rect& rect); |
| 55 static int32_t InvokePrinting(Instance* instance); |
| 56 static void UpdateActivity(Instance* instance); |
| 57 |
54 }; | 58 }; |
55 | 59 |
56 } // namespace flash | 60 } // namespace flash |
57 } // namespace pp | 61 } // namespace pp |
58 | 62 |
59 #endif // PPAPI_CPP_PRIVATE_FLASH_H_ | 63 #endif // PPAPI_CPP_PRIVATE_FLASH_H_ |
OLD | NEW |