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

Side by Side Diff: chrome/browser/media_galleries/fileapi/itunes_library_parser.cc

Issue 16667014: Use a direct include of strings headers in chrome/browser/media_galleries/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "chrome/browser/media_galleries/fileapi/itunes_library_parser.h" 5 #include "chrome/browser/media_galleries/fileapi/itunes_library_parser.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/string16.h" 10 #include "base/strings/string16.h"
11 #include "base/strings/string_number_conversions.h" 11 #include "base/strings/string_number_conversions.h"
12 #include "base/strings/utf_string_conversions.h" 12 #include "base/strings/utf_string_conversions.h"
13 #include "chrome/browser/media_galleries/fileapi/itunes_xml_utils.h" 13 #include "chrome/browser/media_galleries/fileapi/itunes_xml_utils.h"
14 #include "googleurl/src/gurl.h" 14 #include "googleurl/src/gurl.h"
15 #include "googleurl/src/url_canon.h" 15 #include "googleurl/src/url_canon.h"
16 #include "googleurl/src/url_util.h" 16 #include "googleurl/src/url_util.h"
17 #include "third_party/libxml/chromium/libxml_utils.h" 17 #include "third_party/libxml/chromium/libxml_utils.h"
18 18
19 namespace itunes { 19 namespace itunes {
20 20
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 track_found = true; 199 track_found = true;
200 } else { 200 } else {
201 no_errors = false; 201 no_errors = false;
202 } 202 }
203 } 203 }
204 204
205 return track_found || no_errors; 205 return track_found || no_errors;
206 } 206 }
207 207
208 } // namespace itunes 208 } // namespace itunes
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698