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, |