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

Side by Side Diff: chrome/browser/chromeos/drive/debug_info_collector.cc

Issue 15768004: drive: Rename drive::DriveFileSystemTest to drive::FileSystemTest (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/download_handler.cc » ('j') | 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/browser/chromeos/drive/debug_info_collector.h" 5 #include "chrome/browser/chromeos/drive/debug_info_collector.h"
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "content/public/browser/browser_thread.h" 9 #include "content/public/browser/browser_thread.h"
10 10
(...skipping 20 matching lines...) Expand all
31 DCHECK(!completion_callback.is_null()); 31 DCHECK(!completion_callback.is_null());
32 32
33 file_cache_->IterateOnUIThread(iteration_callback, completion_callback); 33 file_cache_->IterateOnUIThread(iteration_callback, completion_callback);
34 } 34 }
35 35
36 void DebugInfoCollector::GetMetadata( 36 void DebugInfoCollector::GetMetadata(
37 const GetFilesystemMetadataCallback& callback) { 37 const GetFilesystemMetadataCallback& callback) {
38 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); 38 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
39 DCHECK(!callback.is_null()); 39 DCHECK(!callback.is_null());
40 40
41 // Currently, this is just a proxy to the DriveFileSystem. 41 // Currently, this is just a proxy to the FileSystem.
42 // TODO(hidehiko): Move the implementation to here to simplify the 42 // TODO(hidehiko): Move the implementation to here to simplify the
43 // DriveFileSystem's implementation. crbug.com/237088 43 // FileSystem's implementation. crbug.com/237088
44 file_system_->GetMetadata(callback); 44 file_system_->GetMetadata(callback);
45 } 45 }
46 46
47 } // namespace drive 47 } // namespace drive
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/download_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698