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

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

Issue 10877006: Rename GDataErrorCode to DriveErrorCode, GDataFileError to DriveFileError (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: minor local variable name fix. Created 8 years, 4 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/ui/ash/screenshot_taker.cc ('k') | chrome/browser/ui/webui/feedback_ui.cc » ('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 fa50cc857adc8a7fdfe78b619b0a2b0b09f81066..d02b64eccbaf4c2c102beb38778d0cd848762a94 100644
--- a/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
+++ b/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
@@ -180,7 +180,7 @@ class DriveInternalsWebUIHandler : public content::WebUIMessageHandler {
// Called when ReadDirectoryByPath() is complete.
void OnReadDirectoryByPath(const FilePath& parent_path,
- gdata::GDataFileError error,
+ gdata::DriveFileError error,
bool hide_hosted_documents,
scoped_ptr<gdata::DriveEntryProtoVector> entries);
@@ -291,11 +291,11 @@ void DriveInternalsWebUIHandler::OnGetGCacheContents(
void DriveInternalsWebUIHandler::OnReadDirectoryByPath(
const FilePath& parent_path,
- gdata::GDataFileError error,
+ gdata::DriveFileError error,
bool hide_hosted_documents,
scoped_ptr<gdata::DriveEntryProtoVector> entries) {
--num_pending_reads_;
- if (error == gdata::GDATA_FILE_OK) {
+ if (error == gdata::DRIVE_FILE_OK) {
DCHECK(entries.get());
std::string file_system_as_text;
« no previous file with comments | « chrome/browser/ui/ash/screenshot_taker.cc ('k') | chrome/browser/ui/webui/feedback_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698