OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "base/command_line.h" | 5 #include "base/command_line.h" |
6 #include "base/files/file_path.h" | 6 #include "base/files/file_path.h" |
7 #include "base/strings/string_util.h" | 7 #include "base/strings/string_util.h" |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "chrome/browser/chrome_notification_types.h" | 9 #include "chrome/browser/chrome_notification_types.h" |
10 #include "chrome/browser/infobars/infobar_service.h" | 10 #include "chrome/browser/infobars/infobar_service.h" |
11 #include "chrome/browser/translate/translate_infobar_delegate.h" | |
12 #include "chrome/browser/translate/translate_service.h" | 11 #include "chrome/browser/translate/translate_service.h" |
13 #include "chrome/browser/ui/browser.h" | 12 #include "chrome/browser/ui/browser.h" |
14 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 13 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
15 #include "chrome/test/base/in_process_browser_test.h" | 14 #include "chrome/test/base/in_process_browser_test.h" |
16 #include "chrome/test/base/test_switches.h" | 15 #include "chrome/test/base/test_switches.h" |
17 #include "chrome/test/base/ui_test_utils.h" | 16 #include "chrome/test/base/ui_test_utils.h" |
18 #include "components/infobars/core/infobar.h" | 17 #include "components/infobars/core/infobar.h" |
| 18 #include "components/translate/core/browser/translate_infobar_delegate.h" |
19 #include "components/translate/core/browser/translate_manager.h" | 19 #include "components/translate/core/browser/translate_manager.h" |
20 #include "components/translate/core/browser/translate_script.h" | 20 #include "components/translate/core/browser/translate_script.h" |
21 #include "components/translate/core/common/translate_switches.h" | 21 #include "components/translate/core/common/translate_switches.h" |
22 #include "content/public/browser/notification_service.h" | 22 #include "content/public/browser/notification_service.h" |
23 #include "content/public/test/browser_test_utils.h" | 23 #include "content/public/test/browser_test_utils.h" |
24 #include "net/http/http_status_code.h" | 24 #include "net/http/http_status_code.h" |
25 #include "net/test/embedded_test_server/embedded_test_server.h" | 25 #include "net/test/embedded_test_server/embedded_test_server.h" |
26 #include "net/test/spawned_test_server/spawned_test_server.h" | 26 #include "net/test/spawned_test_server/spawned_test_server.h" |
27 #include "net/url_request/test_url_fetcher_factory.h" | 27 #include "net/url_request/test_url_fetcher_factory.h" |
28 #include "net/url_request/url_fetcher_delegate.h" | 28 #include "net/url_request/url_fetcher_delegate.h" |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 GetNonSecureURL(kUpdateLocationAtOnloadTestPath)); | 358 GetNonSecureURL(kUpdateLocationAtOnloadTestPath)); |
359 | 359 |
360 // Wait for the page title is changed after the test finished. | 360 // Wait for the page title is changed after the test finished. |
361 const base::string16 result = watcher.WaitAndGetTitle(); | 361 const base::string16 result = watcher.WaitAndGetTitle(); |
362 EXPECT_EQ("PASS", base::UTF16ToASCII(result)); | 362 EXPECT_EQ("PASS", base::UTF16ToASCII(result)); |
363 | 363 |
364 // Check if there is no Translate infobar. | 364 // Check if there is no Translate infobar. |
365 translate = GetExistingTranslateInfoBarDelegate(); | 365 translate = GetExistingTranslateInfoBarDelegate(); |
366 EXPECT_FALSE(translate); | 366 EXPECT_FALSE(translate); |
367 } | 367 } |
OLD | NEW |