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 #include "webkit/plugins/ppapi/npapi_glue.h" | 5 #include "webkit/plugins/ppapi/npapi_glue.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/string_util.h" | 9 #include "base/strings/string_util.h" |
10 #include "webkit/plugins/ppapi/host_array_buffer_var.h" | 10 #include "webkit/plugins/ppapi/host_array_buffer_var.h" |
11 #include "webkit/plugins/ppapi/host_globals.h" | 11 #include "webkit/plugins/ppapi/host_globals.h" |
12 #include "webkit/plugins/ppapi/host_var_tracker.h" | 12 #include "webkit/plugins/ppapi/host_var_tracker.h" |
13 #include "webkit/plugins/ppapi/npobject_var.h" | 13 #include "webkit/plugins/ppapi/npobject_var.h" |
14 #include "webkit/plugins/ppapi/plugin_module.h" | 14 #include "webkit/plugins/ppapi/plugin_module.h" |
15 #include "webkit/plugins/ppapi/plugin_object.h" | 15 #include "webkit/plugins/ppapi/plugin_object.h" |
16 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | 16 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" |
17 #include "third_party/npapi/bindings/npapi.h" | 17 #include "third_party/npapi/bindings/npapi.h" |
18 #include "third_party/npapi/bindings/npruntime.h" | 18 #include "third_party/npapi/bindings/npruntime.h" |
19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h" | 19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h" |
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 } | 307 } |
308 } | 308 } |
309 | 309 |
310 // static | 310 // static |
311 void TryCatch::Catch(void* self, const char* message) { | 311 void TryCatch::Catch(void* self, const char* message) { |
312 static_cast<TryCatch*>(self)->SetException(message); | 312 static_cast<TryCatch*>(self)->SetException(message); |
313 } | 313 } |
314 | 314 |
315 } // namespace ppapi | 315 } // namespace ppapi |
316 } // namespace webkit | 316 } // namespace webkit |
OLD | NEW |