OLD | NEW |
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 Loading... |
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 |
OLD | NEW |