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

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

Issue 15391004: drive: Remove "Drive" prefix from DriveFileSpecificInfo and DriveDirectorySpecifiInfo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.cc ('k') | no next file » | 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 ee8ffd4dd39b5bfc427bae8952306dde2924e5c5..d6961acb183efd39a5cfef9c7cd1b714fbb43c78 100644
--- a/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
+++ b/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
@@ -159,7 +159,7 @@ std::string FormatEntry(const base::FilePath& path,
google_apis::util::FormatTimeAsString(creation_time).c_str());
if (entry.has_file_specific_info()) {
- const drive::DriveFileSpecificInfo& file_specific_info =
+ const drive::FileSpecificInfo& file_specific_info =
entry.file_specific_info();
StringAppendF(&out, " thumbnail_url: %s\n",
file_specific_info.thumbnail_url().c_str());
@@ -177,7 +177,7 @@ std::string FormatEntry(const base::FilePath& path,
if (entry.has_directory_specific_info()) {
StringAppendF(&out, " directory_info\n");
- const drive::DriveDirectorySpecificInfo& directory_specific_info =
+ const drive::DirectorySpecificInfo& directory_specific_info =
entry.directory_specific_info();
StringAppendF(&out, " changestamp: %"PRId64"\n",
directory_specific_info.changestamp());
« no previous file with comments | « chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698