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

Unified Diff: chrome/browser/file_system/browser_file_system_callback_dispatcher.cc

Issue 4261001: Moving Entry from base::file_util_proxy namespace to within class base::FileU... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/file_system/browser_file_system_callback_dispatcher.cc
===================================================================
--- chrome/browser/file_system/browser_file_system_callback_dispatcher.cc (revision 64690)
+++ chrome/browser/file_system/browser_file_system_callback_dispatcher.cc (working copy)
@@ -29,7 +29,7 @@
}
void BrowserFileSystemCallbackDispatcher::DidReadDirectory(
- const std::vector<base::file_util_proxy::Entry>& entries, bool has_more) {
+ const std::vector<base::FileUtilProxy::Entry>& entries, bool has_more) {
dispatcher_host_->Send(new ViewMsg_FileSystem_DidReadDirectory(
request_id_, entries, has_more));
dispatcher_host_->RemoveCompletedOperation(request_id_);

Powered by Google App Engine
This is Rietveld 408576698