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

Side by Side Diff: content/browser/accessibility/dump_accessibility_browsertest_base.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 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 "content/browser/accessibility/dump_accessibility_browsertest_base.h" 5 #include "content/browser/accessibility/dump_accessibility_browsertest_base.h"
6 6
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 19 matching lines...) Expand all
30 #include "content/public/common/url_constants.h" 30 #include "content/public/common/url_constants.h"
31 #include "content/public/test/browser_test_utils.h" 31 #include "content/public/test/browser_test_utils.h"
32 #include "content/public/test/content_browser_test.h" 32 #include "content/public/test/content_browser_test.h"
33 #include "content/public/test/content_browser_test_utils.h" 33 #include "content/public/test/content_browser_test_utils.h"
34 #include "content/public/test/test_utils.h" 34 #include "content/public/test/test_utils.h"
35 #include "content/shell/browser/shell.h" 35 #include "content/shell/browser/shell.h"
36 #include "content/test/accessibility_browser_test_utils.h" 36 #include "content/test/accessibility_browser_test_utils.h"
37 #include "content/test/content_browser_test_utils_internal.h" 37 #include "content/test/content_browser_test_utils_internal.h"
38 #include "net/dns/mock_host_resolver.h" 38 #include "net/dns/mock_host_resolver.h"
39 #include "net/test/embedded_test_server/embedded_test_server.h" 39 #include "net/test/embedded_test_server/embedded_test_server.h"
40 #include "ui/accessibility/ax_enums.h"
40 41
41 namespace content { 42 namespace content {
42 43
43 namespace { 44 namespace {
44 45
45 const char kCommentToken = '#'; 46 const char kCommentToken = '#';
46 const char kMarkSkipFile[] = "#<skip"; 47 const char kMarkSkipFile[] = "#<skip";
47 const char kMarkEndOfFile[] = "<-- End-of-file -->"; 48 const char kMarkEndOfFile[] = "<-- End-of-file -->";
48 const char kSignalDiff[] = "*"; 49 const char kSignalDiff[] = "*";
49 50
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 expected_file, actual_contents.c_str(), actual_contents.size())); 385 expected_file, actual_contents.c_str(), actual_contents.size()));
385 LOG(INFO) << "Wrote expectations to: " 386 LOG(INFO) << "Wrote expectations to: "
386 << expected_file.LossyDisplayName(); 387 << expected_file.LossyDisplayName();
387 } 388 }
388 } else { 389 } else {
389 LOG(INFO) << "Test output matches expectations."; 390 LOG(INFO) << "Test output matches expectations.";
390 } 391 }
391 } 392 }
392 393
393 } // namespace content 394 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698