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

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

Issue 2000403003: [forbots] IWYU for ax_enums.h Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
OLDNEW
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2015 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 <stddef.h> 5 #include <stddef.h>
6 6
7 #include "base/strings/string_number_conversions.h" 7 #include "base/strings/string_number_conversions.h"
8 #include "base/strings/stringprintf.h" 8 #include "base/strings/stringprintf.h"
9 #include "content/browser/accessibility/accessibility_tree_formatter_blink.h" 9 #include "content/browser/accessibility/accessibility_tree_formatter_blink.h"
10 #include "ui/accessibility/ax_enums.h"
10 #include "ui/gfx/transform.h" 11 #include "ui/gfx/transform.h"
11 12
12 namespace content { 13 namespace content {
13 14
14 AccessibilityTreeFormatterBlink::AccessibilityTreeFormatterBlink() 15 AccessibilityTreeFormatterBlink::AccessibilityTreeFormatterBlink()
15 : AccessibilityTreeFormatter() { 16 : AccessibilityTreeFormatter() {
16 } 17 }
17 18
18 AccessibilityTreeFormatterBlink::~AccessibilityTreeFormatterBlink() { 19 AccessibilityTreeFormatterBlink::~AccessibilityTreeFormatterBlink() {
19 } 20 }
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 236
236 const std::string AccessibilityTreeFormatterBlink::GetAllowString() { 237 const std::string AccessibilityTreeFormatterBlink::GetAllowString() {
237 return "@BLINK-ALLOW:"; 238 return "@BLINK-ALLOW:";
238 } 239 }
239 240
240 const std::string AccessibilityTreeFormatterBlink::GetDenyString() { 241 const std::string AccessibilityTreeFormatterBlink::GetDenyString() {
241 return "@BLINK-DENY:"; 242 return "@BLINK-DENY:";
242 } 243 }
243 244
244 } // namespace content 245 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698