OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_THUNK_EXTENSIONS_COMMON_API_H_ | 5 #ifndef PPAPI_THUNK_EXTENSIONS_COMMON_API_H_ |
6 #define PPAPI_THUNK_EXTENSIONS_COMMON_API_H_ | 6 #define PPAPI_THUNK_EXTENSIONS_COMMON_API_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 23 matching lines...) Expand all Loading... |
34 virtual void PostBrowser(const std::string& request_name, | 34 virtual void PostBrowser(const std::string& request_name, |
35 const std::vector<PP_Var>& args) = 0; | 35 const std::vector<PP_Var>& args) = 0; |
36 | 36 |
37 static const SingletonResourceID kSingletonResourceID = | 37 static const SingletonResourceID kSingletonResourceID = |
38 EXTENSIONS_COMMON_SINGLETON_ID; | 38 EXTENSIONS_COMMON_SINGLETON_ID; |
39 }; | 39 }; |
40 | 40 |
41 } // namespace thunk | 41 } // namespace thunk |
42 } // namespace ppapi | 42 } // namespace ppapi |
43 | 43 |
44 #endif // PPAPI_THUNK_EXTENSIONS_COMMON_API_H_ | 44 #endif // PPAPI_THUNK_EXTENSIONS_COMMON_API_H_ |
OLD | NEW |