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

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

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 12 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) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2014 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>
6
5 #include <set> 7 #include <set>
6 #include <string> 8 #include <string>
7 #include <vector> 9 #include <vector>
8 10
9 #include "base/path_service.h" 11 #include "base/path_service.h"
10 #include "base/strings/string16.h" 12 #include "base/strings/string16.h"
11 #include "base/strings/string_util.h" 13 #include "base/strings/string_util.h"
12 #include "base/strings/utf_string_conversions.h" 14 #include "base/strings/utf_string_conversions.h"
15 #include "build/build_config.h"
13 #include "content/browser/accessibility/accessibility_event_recorder.h" 16 #include "content/browser/accessibility/accessibility_event_recorder.h"
14 #include "content/browser/accessibility/accessibility_tree_formatter.h" 17 #include "content/browser/accessibility/accessibility_tree_formatter.h"
15 #include "content/browser/accessibility/browser_accessibility.h" 18 #include "content/browser/accessibility/browser_accessibility.h"
16 #include "content/browser/accessibility/browser_accessibility_manager.h" 19 #include "content/browser/accessibility/browser_accessibility_manager.h"
17 #include "content/browser/accessibility/dump_accessibility_browsertest_base.h" 20 #include "content/browser/accessibility/dump_accessibility_browsertest_base.h"
18 #include "content/browser/web_contents/web_contents_impl.h" 21 #include "content/browser/web_contents/web_contents_impl.h"
19 #include "content/public/common/content_paths.h" 22 #include "content/public/common/content_paths.h"
20 #include "content/shell/browser/shell.h" 23 #include "content/shell/browser/shell.h"
21 #include "content/test/accessibility_browser_test_utils.h" 24 #include "content/test/accessibility_browser_test_utils.h"
22 25
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 } 270 }
268 271
269 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 272 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
270 AccessibilityEventsTextChanged) { 273 AccessibilityEventsTextChanged) {
271 RunEventTest(FILE_PATH_LITERAL("text-changed.html")); 274 RunEventTest(FILE_PATH_LITERAL("text-changed.html"));
272 } 275 }
273 276
274 #endif // defined(OS_WIN) 277 #endif // defined(OS_WIN)
275 278
276 } // namespace content 279 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698