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

Side by Side Diff: content/browser/accessibility/accessibility_tree_formatter.cc

Issue 13937002: Really fix build after r193020. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/accessibility/accessibility_tree_formatter.h" 5 #include "content/browser/accessibility/accessibility_tree_formatter.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 char* prefix) { 73 char* prefix) {
74 return UTF8ToUTF16(prefix) + base::IntToString16(node->renderer_id()) + 74 return UTF8ToUTF16(prefix) + base::IntToString16(node->renderer_id()) +
75 ASCIIToUTF16("\n"); 75 ASCIIToUTF16("\n");
76 } 76 }
77 77
78 void AccessibilityTreeFormatter::Initialize() {} 78 void AccessibilityTreeFormatter::Initialize() {}
79 79
80 // static 80 // static
81 const base::FilePath::StringType 81 const base::FilePath::StringType
82 AccessibilityTreeFormatter::GetActualFileSuffix() { 82 AccessibilityTreeFormatter::GetActualFileSuffix() {
83 return FILE_PATH_LITERAL(std::string()); 83 return base::FilePath::StringType();
84 } 84 }
85 85
86 // static 86 // static
87 const base::FilePath::StringType 87 const base::FilePath::StringType
88 AccessibilityTreeFormatter::GetExpectedFileSuffix() { 88 AccessibilityTreeFormatter::GetExpectedFileSuffix() {
89 return FILE_PATH_LITERAL(std::string()); 89 return base::FilePath::StringType();
90 } 90 }
91 91
92 // static 92 // static
93 const std::string AccessibilityTreeFormatter::GetAllowEmptyString() { 93 const std::string AccessibilityTreeFormatter::GetAllowEmptyString() {
94 return std::string(); 94 return std::string();
95 } 95 }
96 96
97 // static 97 // static
98 const std::string AccessibilityTreeFormatter::GetAllowString() { 98 const std::string AccessibilityTreeFormatter::GetAllowString() {
99 return std::string(); 99 return std::string();
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 if (!line_.empty()) 140 if (!line_.empty())
141 line_ += ASCIIToUTF16(" "); 141 line_ += ASCIIToUTF16(" ");
142 line_ += attr; 142 line_ += attr;
143 } 143 }
144 144
145 string16 AccessibilityTreeFormatter::FinishLine() { 145 string16 AccessibilityTreeFormatter::FinishLine() {
146 return line_; 146 return line_;
147 } 147 }
148 148
149 } // namespace content 149 } // namespace content
OLDNEW
« no previous file with comments | « chrome/common/extensions/extension_file_util_unittest.cc ('k') | content/browser/plugin_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698