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

Unified Diff: content/browser/accessibility/accessibility_tree_formatter.cc

Issue 13145003: Rewrite std::string("") to std::string(), Linux edition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ugh 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
Index: content/browser/accessibility/accessibility_tree_formatter.cc
diff --git a/content/browser/accessibility/accessibility_tree_formatter.cc b/content/browser/accessibility/accessibility_tree_formatter.cc
index cbe0629f9173ca46ea6c6b051baa83b12181c190..3904bc0d83bbec92675e22b5aaf50bb2a93422da 100644
--- a/content/browser/accessibility/accessibility_tree_formatter.cc
+++ b/content/browser/accessibility/accessibility_tree_formatter.cc
@@ -80,28 +80,28 @@ void AccessibilityTreeFormatter::Initialize() {}
// static
const base::FilePath::StringType
AccessibilityTreeFormatter::GetActualFileSuffix() {
- return FILE_PATH_LITERAL("");
+ return base::FilePath::StringType();
}
// static
const base::FilePath::StringType
AccessibilityTreeFormatter::GetExpectedFileSuffix() {
- return FILE_PATH_LITERAL("");
+ return base::FilePath::StringType();
}
// static
const std::string AccessibilityTreeFormatter::GetAllowEmptyString() {
- return "";
+ return std::string();
}
// static
const std::string AccessibilityTreeFormatter::GetAllowString() {
- return "";
+ return std::string();
}
// static
const std::string AccessibilityTreeFormatter::GetDenyString() {
- return "";
+ return std::string();
}
#endif

Powered by Google App Engine
This is Rietveld 408576698