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 #include "webkit/plugins/ppapi/ppb_var_deprecated_impl.h" | 5 #include "content/renderer/pepper/ppb_var_deprecated_impl.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
| 9 #include "content/renderer/pepper/common.h" |
| 10 #include "content/renderer/pepper/host_globals.h" |
| 11 #include "content/renderer/pepper/npapi_glue.h" |
| 12 #include "content/renderer/pepper/npobject_var.h" |
| 13 #include "content/renderer/pepper/plugin_module.h" |
| 14 #include "content/renderer/pepper/plugin_object.h" |
| 15 #include "content/renderer/pepper/ppapi_plugin_instance_impl.h" |
9 #include "ppapi/c/dev/ppb_var_deprecated.h" | 16 #include "ppapi/c/dev/ppb_var_deprecated.h" |
10 #include "ppapi/c/ppb_var.h" | 17 #include "ppapi/c/ppb_var.h" |
11 #include "ppapi/c/pp_var.h" | 18 #include "ppapi/c/pp_var.h" |
12 #include "ppapi/shared_impl/ppb_var_shared.h" | 19 #include "ppapi/shared_impl/ppb_var_shared.h" |
13 #include "third_party/WebKit/public/web/WebBindings.h" | 20 #include "third_party/WebKit/public/web/WebBindings.h" |
14 #include "third_party/WebKit/public/web/WebScopedUserGesture.h" | 21 #include "third_party/WebKit/public/web/WebScopedUserGesture.h" |
15 #include "webkit/plugins/ppapi/common.h" | |
16 #include "webkit/plugins/ppapi/host_globals.h" | |
17 #include "webkit/plugins/ppapi/npapi_glue.h" | |
18 #include "webkit/plugins/ppapi/npobject_var.h" | |
19 #include "webkit/plugins/ppapi/plugin_module.h" | |
20 #include "webkit/plugins/ppapi/plugin_object.h" | |
21 #include "webkit/plugins/ppapi/ppapi_plugin_instance_impl.h" | |
22 | 22 |
23 using ppapi::NPObjectVar; | 23 using ppapi::NPObjectVar; |
24 using ppapi::PpapiGlobals; | 24 using ppapi::PpapiGlobals; |
25 using ppapi::StringVar; | 25 using ppapi::StringVar; |
26 using ppapi::Var; | 26 using ppapi::Var; |
27 using WebKit::WebBindings; | 27 using WebKit::WebBindings; |
28 | 28 |
29 namespace webkit { | 29 namespace webkit { |
30 namespace ppapi { | 30 namespace ppapi { |
31 | 31 |
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 &CreateObjectDeprecated, | 428 &CreateObjectDeprecated, |
429 &CreateObjectWithModuleDeprecated, | 429 &CreateObjectWithModuleDeprecated, |
430 }; | 430 }; |
431 | 431 |
432 return &var_deprecated_interface; | 432 return &var_deprecated_interface; |
433 } | 433 } |
434 | 434 |
435 } // namespace ppapi | 435 } // namespace ppapi |
436 } // namespace webkit | 436 } // namespace webkit |
437 | 437 |
OLD | NEW |