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

Side by Side Diff: chrome/browser/parsers/metadata_parser_filebase.cc

Issue 16561007: Use a direct include of utf_string_conversions.h in chrome/browser/, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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 (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/parsers/metadata_parser_filebase.h" 5 #include "chrome/browser/parsers/metadata_parser_filebase.h"
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/strings/string_number_conversions.h" 8 #include "base/strings/string_number_conversions.h"
9 #include "base/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 10
11 FileMetadataParser::FileMetadataParser(const base::FilePath& path) 11 FileMetadataParser::FileMetadataParser(const base::FilePath& path)
12 : MetadataParser(path), 12 : MetadataParser(path),
13 path_(path) { 13 path_(path) {
14 } 14 }
15 15
16 FileMetadataParser::~FileMetadataParser() {} 16 FileMetadataParser::~FileMetadataParser() {}
17 17
18 bool FileMetadataParser::Parse() { 18 bool FileMetadataParser::Parse() {
19 std::string value; 19 std::string value;
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 return properties_.size(); 67 return properties_.size();
68 } 68 }
69 69
70 bool FileMetadataPropertyIterator::IsEnd() { 70 bool FileMetadataPropertyIterator::IsEnd() {
71 if (it == properties_.end()) { 71 if (it == properties_.end()) {
72 return true; 72 return true;
73 } else { 73 } else {
74 return false; 74 return false;
75 } 75 }
76 } 76 }
OLDNEW
« no previous file with comments | « chrome/browser/page_cycler/page_cycler_unittest.cc ('k') | chrome/browser/parsers/metadata_parser_jpeg_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698