| OLD | NEW |
| 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 "chrome/browser/ui/webui/bidi_checker_web_ui_test.h" | 5 #include "chrome/browser/ui/webui/bidi_checker_web_ui_test.h" |
| 6 | 6 |
| 7 #include "base/base_paths.h" | 7 #include "base/base_paths.h" |
| 8 #include "base/i18n/rtl.h" | 8 #include "base/i18n/rtl.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 RunBidiCheckerOnPage(url); | 426 RunBidiCheckerOnPage(url); |
| 427 } | 427 } |
| 428 | 428 |
| 429 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestRTL, | 429 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestRTL, |
| 430 TestSettingsFrameImportData) { | 430 TestSettingsFrameImportData) { |
| 431 std::string url(chrome::kChromeUISettingsFrameURL); | 431 std::string url(chrome::kChromeUISettingsFrameURL); |
| 432 url += chrome::kImportDataSubPage; | 432 url += chrome::kImportDataSubPage; |
| 433 RunBidiCheckerOnPage(url); | 433 RunBidiCheckerOnPage(url); |
| 434 } | 434 } |
| 435 | 435 |
| 436 #if !defined(OS_CHROMEOS) |
| 436 //======================================== | 437 //======================================== |
| 437 // chrome://settings-frame/manageProfile | 438 // chrome://settings-frame/manageProfile |
| 438 //======================================== | 439 //======================================== |
| 439 | 440 |
| 440 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestLTR, | 441 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestLTR, |
| 441 TestSettingsFrameMangageProfile) { | 442 TestSettingsFrameMangageProfile) { |
| 442 std::string url(chrome::kChromeUISettingsFrameURL); | 443 std::string url(chrome::kChromeUISettingsFrameURL); |
| 443 url += chrome::kManageProfileSubPage; | 444 url += chrome::kManageProfileSubPage; |
| 444 RunBidiCheckerOnPage(url); | 445 RunBidiCheckerOnPage(url); |
| 445 } | 446 } |
| 446 | 447 |
| 447 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestRTL, | 448 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestRTL, |
| 448 TestSettingsFrameMangageProfile) { | 449 TestSettingsFrameMangageProfile) { |
| 449 std::string url(chrome::kChromeUISettingsFrameURL); | 450 std::string url(chrome::kChromeUISettingsFrameURL); |
| 450 url += chrome::kManageProfileSubPage; | 451 url += chrome::kManageProfileSubPage; |
| 451 RunBidiCheckerOnPage(url); | 452 RunBidiCheckerOnPage(url); |
| 452 } | 453 } |
| 454 #endif // !defined(OS_CHROMEOS) |
| 453 | 455 |
| 454 //=================================================== | 456 //=================================================== |
| 455 // chrome://settings-frame/contentExceptions#cookies | 457 // chrome://settings-frame/contentExceptions#cookies |
| 456 //=================================================== | 458 //=================================================== |
| 457 | 459 |
| 458 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestLTR, | 460 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestLTR, |
| 459 TestSettingsFrameContentExceptionsCookies) { | 461 TestSettingsFrameContentExceptionsCookies) { |
| 460 std::string url(chrome::kChromeUISettingsFrameURL); | 462 std::string url(chrome::kChromeUISettingsFrameURL); |
| 461 url += chrome::kDeprecatedOptionsContentSettingsExceptionsSubPage; | 463 url += chrome::kDeprecatedOptionsContentSettingsExceptionsSubPage; |
| 462 url += "#cookies"; | 464 url += "#cookies"; |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 729 | 731 |
| 730 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestLTR, | 732 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestLTR, |
| 731 TestHistoryFrame) { | 733 TestHistoryFrame) { |
| 732 RunBidiCheckerOnPage(chrome::kChromeUIHistoryFrameURL); | 734 RunBidiCheckerOnPage(chrome::kChromeUIHistoryFrameURL); |
| 733 } | 735 } |
| 734 | 736 |
| 735 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestRTL, | 737 IN_PROC_BROWSER_TEST_F(DISABLED_WebUIBidiCheckerBrowserTestRTL, |
| 736 TestHistoryFrame) { | 738 TestHistoryFrame) { |
| 737 RunBidiCheckerOnPage(chrome::kChromeUIHistoryFrameURL); | 739 RunBidiCheckerOnPage(chrome::kChromeUIHistoryFrameURL); |
| 738 } | 740 } |
| OLD | NEW |