| 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_PROXY_PLUGIN_GLOBALS_H_ | 5 #ifndef PPAPI_PROXY_PLUGIN_GLOBALS_H_ |
| 6 #define PPAPI_PROXY_PLUGIN_GLOBALS_H_ | 6 #define PPAPI_PROXY_PLUGIN_GLOBALS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/threading/thread_local_storage.h" | 14 #include "base/threading/thread_local_storage.h" |
| 14 #include "ppapi/proxy/connection.h" | 15 #include "ppapi/proxy/connection.h" |
| 15 #include "ppapi/proxy/plugin_resource_tracker.h" | 16 #include "ppapi/proxy/plugin_resource_tracker.h" |
| 16 #include "ppapi/proxy/plugin_var_tracker.h" | 17 #include "ppapi/proxy/plugin_var_tracker.h" |
| 17 #include "ppapi/proxy/ppapi_proxy_export.h" | 18 #include "ppapi/proxy/ppapi_proxy_export.h" |
| 18 #include "ppapi/shared_impl/callback_tracker.h" | 19 #include "ppapi/shared_impl/callback_tracker.h" |
| 19 #include "ppapi/shared_impl/ppapi_globals.h" | 20 #include "ppapi/shared_impl/ppapi_globals.h" |
| 20 | 21 |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 // Member variables should appear before the WeakPtrFactory, see weak_ptr.h. | 206 // Member variables should appear before the WeakPtrFactory, see weak_ptr.h. |
| 206 base::WeakPtrFactory<PluginGlobals> weak_factory_; | 207 base::WeakPtrFactory<PluginGlobals> weak_factory_; |
| 207 | 208 |
| 208 DISALLOW_COPY_AND_ASSIGN(PluginGlobals); | 209 DISALLOW_COPY_AND_ASSIGN(PluginGlobals); |
| 209 }; | 210 }; |
| 210 | 211 |
| 211 } // namespace proxy | 212 } // namespace proxy |
| 212 } // namespace ppapi | 213 } // namespace ppapi |
| 213 | 214 |
| 214 #endif // PPAPI_PROXY_PLUGIN_GLOBALS_H_ | 215 #endif // PPAPI_PROXY_PLUGIN_GLOBALS_H_ |
| OLD | NEW |