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

Unified Diff: chrome/browser/chromeos/drive/file_system/remove_operation.cc

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/file_system/remove_operation.cc
diff --git a/chrome/browser/chromeos/drive/file_system/remove_operation.cc b/chrome/browser/chromeos/drive/file_system/remove_operation.cc
index e871e84bb1df15816a305e17adfb3dfbf00e4936..a6bc88d8f35648c3e435f871666014d7a1008edd 100644
--- a/chrome/browser/chromeos/drive/file_system/remove_operation.cc
+++ b/chrome/browser/chromeos/drive/file_system/remove_operation.cc
@@ -36,7 +36,7 @@ void RemoveOperation::Remove(
DCHECK(!callback.is_null());
// Get the edit URL of an entry at |file_path|.
- file_system_->ResourceMetadata()->GetEntryInfoByPath(
+ file_system_->GetResourceMetadata()->GetEntryInfoByPath(
file_path,
base::Bind(
&RemoveOperation::RemoveAfterGetEntryInfo,
@@ -85,7 +85,7 @@ void RemoveOperation::RemoveResourceLocally(
return;
}
- file_system_->ResourceMetadata()->RemoveEntryFromParent(
+ file_system_->GetResourceMetadata()->RemoveEntryFromParent(
resource_id,
base::Bind(&RemoveOperation::NotifyDirectoryChanged,
weak_ptr_factory_.GetWeakPtr(),

Powered by Google App Engine
This is Rietveld 408576698