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

Unified Diff: chrome/browser/chromeos/drive/drive_file_system.h

Issue 11106009: drive: Add the local largest changestamp to chrome:drive-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/drive/drive_file_system.h
diff --git a/chrome/browser/chromeos/drive/drive_file_system.h b/chrome/browser/chromeos/drive/drive_file_system.h
index cfd6ac7bec29c615dca6b8d7930bc6d023b65d5b..b1073a67ade72b45b244871cc8c8702c3f3a1221 100644
--- a/chrome/browser/chromeos/drive/drive_file_system.h
+++ b/chrome/browser/chromeos/drive/drive_file_system.h
@@ -135,6 +135,9 @@ class DriveFileSystem : public DriveFileSystemInterface,
scoped_ptr<gdata::DocumentEntry> entry,
const FilePath& file_content_path,
const base::Closure& callback) OVERRIDE;
+ virtual DriveResourceMetadata* GetResourceMetadata() OVERRIDE {
Haruki Sato 2012/10/15 07:10:29 Is this overriding something?
satorux1 2012/10/16 05:02:56 yes. one in DriveFileSystemInterface
+ return resource_metadata_.get();
+ }
// content::NotificationObserver implementation.
virtual void Observe(int type,
@@ -147,8 +150,6 @@ class DriveFileSystem : public DriveFileSystemInterface,
virtual void OnDocumentFeedFetched(int num_accumulated_entries) OVERRIDE;
virtual void OnFeedFromServerLoaded() OVERRIDE;
- DriveResourceMetadata* ResourceMetadata() { return resource_metadata_.get(); }
-
// Used in tests to load the root feed from the cache.
void LoadRootFeedFromCacheForTesting();

Powered by Google App Engine
This is Rietveld 408576698