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

Unified Diff: content/browser/accessibility/dump_accessibility_tree_helper_mac.mm

Issue 12213066: Use base namespace for FilePath in content/browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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/dump_accessibility_tree_helper_mac.mm
diff --git a/content/browser/accessibility/dump_accessibility_tree_helper_mac.mm b/content/browser/accessibility/dump_accessibility_tree_helper_mac.mm
index f5ba910845f78ae51085f52665df460c890e43b1..895c7e741440f4e7c2742530a4af24e3aab3e41a 100644
--- a/content/browser/accessibility/dump_accessibility_tree_helper_mac.mm
+++ b/content/browser/accessibility/dump_accessibility_tree_helper_mac.mm
@@ -112,12 +112,14 @@ string16 DumpAccessibilityTreeHelper::ToString(BrowserAccessibility* node,
return ASCIIToUTF16(prefix) + FinishLine() + ASCIIToUTF16("\n");
}
-const FilePath::StringType DumpAccessibilityTreeHelper::GetActualFileSuffix()
+const base::FilePath::StringType
+DumpAccessibilityTreeHelper::GetActualFileSuffix()
const {
return FILE_PATH_LITERAL("-actual-mac.txt");
}
-const FilePath::StringType DumpAccessibilityTreeHelper::GetExpectedFileSuffix()
+const base::FilePath::StringType
+DumpAccessibilityTreeHelper::GetExpectedFileSuffix()
const {
return FILE_PATH_LITERAL("-expected-mac.txt");
}

Powered by Google App Engine
This is Rietveld 408576698