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 #import <Carbon/Carbon.h> | 5 #import <Carbon/Carbon.h> |
6 #import <CoreFoundation/CoreFoundation.h> | 6 #import <CoreFoundation/CoreFoundation.h> |
7 | 7 |
8 #include "webkit/plugins/npapi/plugin_lib.h" | 8 #include "webkit/plugins/npapi/plugin_lib.h" |
9 | 9 |
10 #include "base/mac/scoped_cftyperef.h" | 10 #include "base/mac/scoped_cftyperef.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/native_library.h" | 12 #include "base/native_library.h" |
13 #include "base/string_split.h" | |
14 #include "base/string_util.h" | 13 #include "base/string_util.h" |
| 14 #include "base/strings/string_split.h" |
15 #include "base/sys_string_conversions.h" | 15 #include "base/sys_string_conversions.h" |
16 #include "base/utf_string_conversions.h" | 16 #include "base/utf_string_conversions.h" |
17 #include "webkit/plugins/npapi/plugin_list.h" | 17 #include "webkit/plugins/npapi/plugin_list.h" |
18 | 18 |
19 using base::mac::ScopedCFTypeRef; | 19 using base::mac::ScopedCFTypeRef; |
20 | 20 |
21 namespace webkit { | 21 namespace webkit { |
22 namespace npapi { | 22 namespace npapi { |
23 | 23 |
24 namespace { | 24 namespace { |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 if (ReadPlistPluginInfo(filename, bundle.get(), info)) | 220 if (ReadPlistPluginInfo(filename, bundle.get(), info)) |
221 return true; | 221 return true; |
222 | 222 |
223 // ... or not | 223 // ... or not |
224 | 224 |
225 return false; | 225 return false; |
226 } | 226 } |
227 | 227 |
228 } // namespace npapi | 228 } // namespace npapi |
229 } // namespace webkit | 229 } // namespace webkit |
OLD | NEW |