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_DISPATCHER_H_ | 5 #ifndef PPAPI_PROXY_PLUGIN_DISPATCHER_H_ |
6 #define PPAPI_PROXY_PLUGIN_DISPATCHER_H_ | 6 #define PPAPI_PROXY_PLUGIN_DISPATCHER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/hash_tables.h" | 12 #include "base/hash_tables.h" |
13 #include "base/memory/scoped_ptr.h" | |
14 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
15 #include "base/process.h" | 14 #include "base/process.h" |
16 #include "build/build_config.h" | 15 #include "build/build_config.h" |
17 #include "ppapi/c/dev/ppb_console_dev.h" | 16 #include "ppapi/c/dev/ppb_console_dev.h" |
18 #include "ppapi/c/pp_rect.h" | 17 #include "ppapi/c/pp_rect.h" |
19 #include "ppapi/c/pp_instance.h" | 18 #include "ppapi/c/pp_instance.h" |
20 #include "ppapi/proxy/dispatcher.h" | 19 #include "ppapi/proxy/dispatcher.h" |
21 #include "ppapi/shared_impl/ppapi_preferences.h" | 20 #include "ppapi/shared_impl/ppapi_preferences.h" |
22 #include "ppapi/shared_impl/ppb_view_shared.h" | 21 #include "ppapi/shared_impl/ppb_view_shared.h" |
23 | 22 |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 // incognito mode. | 166 // incognito mode. |
168 bool incognito_; | 167 bool incognito_; |
169 | 168 |
170 DISALLOW_COPY_AND_ASSIGN(PluginDispatcher); | 169 DISALLOW_COPY_AND_ASSIGN(PluginDispatcher); |
171 }; | 170 }; |
172 | 171 |
173 } // namespace proxy | 172 } // namespace proxy |
174 } // namespace ppapi | 173 } // namespace ppapi |
175 | 174 |
176 #endif // PPAPI_PROXY_PLUGIN_DISPATCHER_H_ | 175 #endif // PPAPI_PROXY_PLUGIN_DISPATCHER_H_ |
OLD | NEW |