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

Side by Side Diff: chrome/utility/media_galleries/picasa_album_table_reader.cc

Issue 689553002: Cleanup: Remove unneeded path_service.h includes in base and chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix win Created 6 years, 1 month 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
« no previous file with comments | « chrome/test/base/interactive_test_utils_win.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/utility/media_galleries/picasa_album_table_reader.h" 5 #include "chrome/utility/media_galleries/picasa_album_table_reader.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 9
10 #include "base/path_service.h"
11 #include "base/strings/string_util.h" 10 #include "base/strings/string_util.h"
12 #include "base/strings/utf_string_conversions.h" 11 #include "base/strings/utf_string_conversions.h"
13 #include "chrome/common/media_galleries/pmp_constants.h" 12 #include "chrome/common/media_galleries/pmp_constants.h"
14 #include "chrome/utility/media_galleries/pmp_column_reader.h" 13 #include "chrome/utility/media_galleries/pmp_column_reader.h"
15 14
16 namespace picasa { 15 namespace picasa {
17 16
18 namespace { 17 namespace {
19 18
20 // |variant_time| is specified as the number of days from Dec 30, 1899. 19 // |variant_time| is specified as the number of days from Dec 30, 1899.
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 106
108 folders_.push_back(AlbumInfo(name, timestamp, uid, path)); 107 folders_.push_back(AlbumInfo(name, timestamp, uid, path));
109 } 108 }
110 } 109 }
111 110
112 initialized_ = true; 111 initialized_ = true;
113 return true; 112 return true;
114 } 113 }
115 114
116 } // namespace picasa 115 } // namespace picasa
OLDNEW
« no previous file with comments | « chrome/test/base/interactive_test_utils_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698