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

Unified Diff: chrome/browser/chromeos/gdata/gdata_files.cc

Issue 10827135: Comment objectType field of ApplicationResource, resolving TODO (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 5 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/gdata/gdata_files.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_files.cc b/chrome/browser/chromeos/gdata/gdata_files.cc
index ee25cfe0d5c32bd9966ca5d8fe4ace47d2e1cd5c..2e34813f3e946935efb27704e9a450dcc57e4d9f 100644
--- a/chrome/browser/chromeos/gdata/gdata_files.cc
+++ b/chrome/browser/chromeos/gdata/gdata_files.cc
@@ -101,7 +101,7 @@ void GDataEntry::SetBaseNameFromTitle() {
base_name_ = EscapeUtf8FileName(title_);
}
-// static.
+// static
GDataEntry* GDataEntry::FromDocumentEntry(
GDataDirectory* parent,
DocumentEntry* doc,
@@ -115,7 +115,7 @@ GDataEntry* GDataEntry::FromDocumentEntry(
return NULL;
}
-// static.
+// static
std::string GDataEntry::EscapeUtf8FileName(const std::string& input) {
std::string output;
if (ReplaceChars(input, kSlash, std::string(kEscapedSlash), &output))
@@ -124,7 +124,7 @@ std::string GDataEntry::EscapeUtf8FileName(const std::string& input) {
return input;
}
-// static.
+// static
std::string GDataEntry::UnescapeUtf8FileName(const std::string& input) {
std::string output = input;
ReplaceSubstringsAfterOffset(&output, 0, std::string(kEscapedSlash), kSlash);
@@ -156,7 +156,7 @@ void GDataFile::SetBaseNameFromTitle() {
}
}
-// static.
+// static
GDataEntry* GDataFile::FromDocumentEntry(
GDataDirectory* parent,
DocumentEntry* doc,
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_file_system.h ('k') | chrome/browser/chromeos/gdata/gdata_operations.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698