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

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

Issue 486843004: Change base/file_utils.h includes to base/files/file_utils.h in chrome/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bad merge Created 6 years, 3 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/safe_picasa_albums_indexer.h" 5 #include "chrome/browser/media_galleries/fileapi/safe_picasa_albums_indexer.h"
6 6
7 #include "base/file_util.h" 7 #include "base/files/file_util.h"
8 #include "chrome/browser/media_galleries/fileapi/media_file_system_backend.h" 8 #include "chrome/browser/media_galleries/fileapi/media_file_system_backend.h"
9 #include "chrome/common/extensions/chrome_utility_extensions_messages.h" 9 #include "chrome/common/extensions/chrome_utility_extensions_messages.h"
10 #include "content/public/browser/browser_thread.h" 10 #include "content/public/browser/browser_thread.h"
11 #include "content/public/browser/child_process_data.h" 11 #include "content/public/browser/child_process_data.h"
12 #include "content/public/browser/utility_process_host.h" 12 #include "content/public/browser/utility_process_host.h"
13 13
14 using content::BrowserThread; 14 using content::BrowserThread;
15 using content::UtilityProcessHost; 15 using content::UtilityProcessHost;
16 16
17 namespace picasa { 17 namespace picasa {
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 IPC_BEGIN_MESSAGE_MAP(SafePicasaAlbumsIndexer, message) 129 IPC_BEGIN_MESSAGE_MAP(SafePicasaAlbumsIndexer, message)
130 IPC_MESSAGE_HANDLER( 130 IPC_MESSAGE_HANDLER(
131 ChromeUtilityHostMsg_IndexPicasaAlbumsContents_Finished, 131 ChromeUtilityHostMsg_IndexPicasaAlbumsContents_Finished,
132 OnIndexPicasaAlbumsContentsFinished) 132 OnIndexPicasaAlbumsContentsFinished)
133 IPC_MESSAGE_UNHANDLED(handled = false) 133 IPC_MESSAGE_UNHANDLED(handled = false)
134 IPC_END_MESSAGE_MAP() 134 IPC_END_MESSAGE_MAP()
135 return handled; 135 return handled;
136 } 136 }
137 137
138 } // namespace picasa 138 } // namespace picasa
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698