Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: webkit/plugins/npapi/plugin_lib_mac.mm

Issue 12473004: src/: Update the remaining include paths of string_split.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« no previous file with comments | « webkit/gpu/webgraphicscontext3d_in_process_impl.cc ('k') | webkit/plugins/npapi/plugin_lib_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698