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

Unified Diff: chrome/browser/ui/webui/chromeos/drive_internals_ui.cc

Issue 14626003: drive: Rename DriveFileSystemMetadata to FileSystemMetadata (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 7 years, 8 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
« no previous file with comments | « chrome/browser/chromeos/drive/file_system_metadata.cc ('k') | chrome/chrome_browser_chromeos.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
diff --git a/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc b/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
index 0a9e284b96aad51ee720215c2cd572c78eddf201..ef40f2f2b428aed29fa52706d89d6f48d981ff8b 100644
--- a/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
+++ b/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
@@ -253,11 +253,11 @@ class DriveInternalsWebUIHandler : public content::WebUIMessageHandler {
// Callback for DriveFilesystem::GetMetadata for local update.
void OnGetFilesystemMetadataForLocal(
- const drive::DriveFileSystemMetadata& metadata);
+ const drive::FileSystemMetadata& metadata);
// Callback for DriveFilesystem::GetMetadata for local update.
void OnGetFilesystemMetadataForDeltaUpdate(
- const drive::DriveFileSystemMetadata& metadata);
+ const drive::FileSystemMetadata& metadata);
// Called when the page requests periodic update.
void OnPeriodicUpdate(const base::ListValue* args);
@@ -473,7 +473,7 @@ void DriveInternalsWebUIHandler::UpdateLocalMetadataSection(
}
void DriveInternalsWebUIHandler::OnGetFilesystemMetadataForLocal(
- const drive::DriveFileSystemMetadata& metadata) {
+ const drive::FileSystemMetadata& metadata) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
base::DictionaryValue local_metadata;
@@ -512,7 +512,7 @@ void DriveInternalsWebUIHandler::UpdateDeltaUpdateStatusSection() {
}
void DriveInternalsWebUIHandler::OnGetFilesystemMetadataForDeltaUpdate(
- const drive::DriveFileSystemMetadata& metadata) {
+ const drive::FileSystemMetadata& metadata) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
Profile* profile = Profile::FromWebUI(web_ui());
google_apis::DriveNotificationManager* drive_notification_manager =
« no previous file with comments | « chrome/browser/chromeos/drive/file_system_metadata.cc ('k') | chrome/chrome_browser_chromeos.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698