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 <algorithm> | 5 #include <algorithm> |
6 #include <set> | 6 #include <set> |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 #include "chrome/browser/translate/translate_script.h" | 25 #include "chrome/browser/translate/translate_script.h" |
26 #include "chrome/browser/translate/translate_tab_helper.h" | 26 #include "chrome/browser/translate/translate_tab_helper.h" |
27 #include "chrome/browser/ui/browser.h" | 27 #include "chrome/browser/ui/browser.h" |
28 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 28 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
29 #include "chrome/browser/ui/translate/translate_bubble_factory.h" | 29 #include "chrome/browser/ui/translate/translate_bubble_factory.h" |
30 #include "chrome/browser/ui/translate/translate_bubble_model.h" | 30 #include "chrome/browser/ui/translate/translate_bubble_model.h" |
31 #include "chrome/browser/ui/translate/translate_bubble_model_impl.h" | 31 #include "chrome/browser/ui/translate/translate_bubble_model_impl.h" |
32 #include "chrome/common/chrome_switches.h" | 32 #include "chrome/common/chrome_switches.h" |
33 #include "chrome/common/pref_names.h" | 33 #include "chrome/common/pref_names.h" |
34 #include "chrome/common/render_messages.h" | 34 #include "chrome/common/render_messages.h" |
35 #include "chrome/common/translate/language_detection_details.h" | |
36 #include "chrome/common/url_constants.h" | 35 #include "chrome/common/url_constants.h" |
37 #include "chrome/test/base/chrome_render_view_host_test_harness.h" | 36 #include "chrome/test/base/chrome_render_view_host_test_harness.h" |
38 #include "chrome/test/base/in_process_browser_test.h" | 37 #include "chrome/test/base/in_process_browser_test.h" |
39 #include "chrome/test/base/testing_browser_process.h" | 38 #include "chrome/test/base/testing_browser_process.h" |
40 #include "chrome/test/base/testing_profile.h" | 39 #include "chrome/test/base/testing_profile.h" |
41 #include "chrome/test/base/ui_test_utils.h" | 40 #include "chrome/test/base/ui_test_utils.h" |
| 41 #include "components/translate/core/common/language_detection_details.h" |
42 #include "content/public/browser/navigation_details.h" | 42 #include "content/public/browser/navigation_details.h" |
43 #include "content/public/browser/navigation_entry.h" | 43 #include "content/public/browser/navigation_entry.h" |
44 #include "content/public/browser/notification_details.h" | 44 #include "content/public/browser/notification_details.h" |
45 #include "content/public/browser/notification_registrar.h" | 45 #include "content/public/browser/notification_registrar.h" |
46 #include "content/public/browser/web_contents.h" | 46 #include "content/public/browser/web_contents.h" |
47 #include "content/public/test/mock_render_process_host.h" | 47 #include "content/public/test/mock_render_process_host.h" |
48 #include "content/public/test/test_renderer_host.h" | 48 #include "content/public/test/test_renderer_host.h" |
49 #include "net/url_request/test_url_fetcher_factory.h" | 49 #include "net/url_request/test_url_fetcher_factory.h" |
50 #include "net/url_request/url_fetcher_delegate.h" | 50 #include "net/url_request/url_fetcher_delegate.h" |
51 #include "testing/gmock/include/gmock/gmock.h" | 51 #include "testing/gmock/include/gmock/gmock.h" |
(...skipping 1564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1616 content::WebContents* current_web_contents = | 1616 content::WebContents* current_web_contents = |
1617 browser()->tab_strip_model()->GetActiveWebContents(); | 1617 browser()->tab_strip_model()->GetActiveWebContents(); |
1618 content::Source<content::WebContents> source(current_web_contents); | 1618 content::Source<content::WebContents> source(current_web_contents); |
1619 | 1619 |
1620 ui_test_utils::WindowedNotificationObserverWithDetails< | 1620 ui_test_utils::WindowedNotificationObserverWithDetails< |
1621 LanguageDetectionDetails> | 1621 LanguageDetectionDetails> |
1622 fr_language_detected_signal(chrome::NOTIFICATION_TAB_LANGUAGE_DETERMINED, | 1622 fr_language_detected_signal(chrome::NOTIFICATION_TAB_LANGUAGE_DETERMINED, |
1623 source); | 1623 source); |
1624 fr_language_detected_signal.Wait(); | 1624 fr_language_detected_signal.Wait(); |
1625 } | 1625 } |
OLD | NEW |