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

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

Issue 12335101: Move some accessibility methods, enums and interfaces into the content/public API. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix virtual method with no implementation, non-explicit single argument constructor 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_win.cc
diff --git a/content/browser/accessibility/dump_accessibility_tree_helper_win.cc b/content/browser/accessibility/dump_accessibility_tree_helper_win.cc
index 6dcbcc920b87ac5dbc9dfb4805e2943397f70151..d7052da2b1c5c02d0c95847379972b6f688058a4 100644
--- a/content/browser/accessibility/dump_accessibility_tree_helper_win.cc
+++ b/content/browser/accessibility/dump_accessibility_tree_helper_win.cc
@@ -160,25 +160,30 @@ string16 DumpAccessibilityTreeHelper::ToString(
return UTF8ToUTF16(prefix) + FinishLine() + ASCIIToUTF16("\n");
}
+// static
const base::FilePath::StringType
-DumpAccessibilityTreeHelper::GetActualFileSuffix() const {
+DumpAccessibilityTreeHelper::GetActualFileSuffix() {
return FILE_PATH_LITERAL("-actual-win.txt");
}
+// static
const base::FilePath::StringType
-DumpAccessibilityTreeHelper::GetExpectedFileSuffix() const {
+DumpAccessibilityTreeHelper::GetExpectedFileSuffix() {
return FILE_PATH_LITERAL("-expected-win.txt");
}
-const std::string DumpAccessibilityTreeHelper::GetAllowEmptyString() const {
+// static
+const std::string DumpAccessibilityTreeHelper::GetAllowEmptyString() {
return "@WIN-ALLOW-EMPTY:";
}
-const std::string DumpAccessibilityTreeHelper::GetAllowString() const {
+// static
+const std::string DumpAccessibilityTreeHelper::GetAllowString() {
return "@WIN-ALLOW:";
}
-const std::string DumpAccessibilityTreeHelper::GetDenyString() const {
+// static
+const std::string DumpAccessibilityTreeHelper::GetDenyString() {
return "@WIN-DENY:";
}

Powered by Google App Engine
This is Rietveld 408576698