| 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/translate/translate_manager.h" | 5 #include "chrome/browser/translate/translate_manager.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/json/json_reader.h" | 10 #include "base/json/json_reader.h" |
| 11 #include "base/memory/singleton.h" | 11 #include "base/memory/singleton.h" |
| 12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
| 13 #include "base/metrics/histogram.h" | 13 #include "base/metrics/histogram.h" |
| 14 #include "base/string_split.h" | 14 #include "base/string_split.h" |
| 15 #include "base/string_util.h" | 15 #include "base/string_util.h" |
| 16 #include "base/stringprintf.h" | 16 #include "base/stringprintf.h" |
| 17 #include "base/values.h" | 17 #include "base/values.h" |
| 18 #include "chrome/browser/browser_process.h" | 18 #include "chrome/browser/browser_process.h" |
| 19 #include "chrome/browser/infobars/infobar_tab_helper.h" | 19 #include "chrome/browser/infobars/infobar_tab_helper.h" |
| 20 #include "chrome/browser/prefs/pref_service.h" | 20 #include "chrome/browser/prefs/pref_service.h" |
| 21 #include "chrome/browser/profiles/profile.h" | 21 #include "chrome/browser/profiles/profile.h" |
| 22 #include "chrome/browser/tab_contents/language_state.h" | 22 #include "chrome/browser/tab_contents/language_state.h" |
| 23 #include "chrome/browser/tab_contents/tab_util.h" | 23 #include "chrome/browser/tab_contents/tab_util.h" |
| 24 #include "chrome/browser/translate/page_translated_details.h" | 24 #include "chrome/browser/translate/page_translated_details.h" |
| 25 #include "chrome/browser/translate/translate_infobar_delegate.h" | 25 #include "chrome/browser/translate/translate_infobar_delegate.h" |
| 26 #include "chrome/browser/translate/translate_prefs.h" | 26 #include "chrome/browser/translate/translate_prefs.h" |
| 27 #include "chrome/browser/translate/translate_tab_helper.h" | 27 #include "chrome/browser/translate/translate_tab_helper.h" |
| 28 #include "chrome/browser/ui/browser.h" | 28 #include "chrome/browser/ui/browser.h" |
| 29 #include "chrome/browser/ui/browser_list.h" | 29 #include "chrome/browser/ui/browser_finder.h" |
| 30 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 30 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
| 31 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 31 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 32 #include "chrome/common/chrome_notification_types.h" | 32 #include "chrome/common/chrome_notification_types.h" |
| 33 #include "chrome/common/chrome_switches.h" | 33 #include "chrome/common/chrome_switches.h" |
| 34 #include "chrome/common/pref_names.h" | 34 #include "chrome/common/pref_names.h" |
| 35 #include "chrome/common/render_messages.h" | 35 #include "chrome/common/render_messages.h" |
| 36 #include "chrome/common/translate_errors.h" | 36 #include "chrome/common/translate_errors.h" |
| 37 #include "chrome/common/url_constants.h" | 37 #include "chrome/common/url_constants.h" |
| 38 #include "content/public/browser/navigation_controller.h" | 38 #include "content/public/browser/navigation_controller.h" |
| 39 #include "content/public/browser/navigation_details.h" | 39 #include "content/public/browser/navigation_details.h" |
| (...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 | 669 |
| 670 TranslateTabHelper* helper = TabContentsWrapper::GetCurrentWrapperForContents( | 670 TranslateTabHelper* helper = TabContentsWrapper::GetCurrentWrapperForContents( |
| 671 web_contents)->translate_tab_helper(); | 671 web_contents)->translate_tab_helper(); |
| 672 report_error_url += helper->language_state().original_language(); | 672 report_error_url += helper->language_state().original_language(); |
| 673 report_error_url += "&hl="; | 673 report_error_url += "&hl="; |
| 674 report_error_url += | 674 report_error_url += |
| 675 GetLanguageCode(g_browser_process->GetApplicationLocale()); | 675 GetLanguageCode(g_browser_process->GetApplicationLocale()); |
| 676 // Open that URL in a new tab so that the user can tell us more. | 676 // Open that URL in a new tab so that the user can tell us more. |
| 677 Profile* profile = | 677 Profile* profile = |
| 678 Profile::FromBrowserContext(web_contents->GetBrowserContext()); | 678 Profile::FromBrowserContext(web_contents->GetBrowserContext()); |
| 679 Browser* browser = BrowserList::GetLastActiveWithProfile(profile); | 679 Browser* browser = browser::FindLastActiveWithProfile(profile); |
| 680 if (!browser) { | 680 if (!browser) { |
| 681 NOTREACHED(); | 681 NOTREACHED(); |
| 682 return; | 682 return; |
| 683 } | 683 } |
| 684 browser->AddSelectedTabWithURL(GURL(report_error_url), | 684 browser->AddSelectedTabWithURL(GURL(report_error_url), |
| 685 content::PAGE_TRANSITION_AUTO_BOOKMARK); | 685 content::PAGE_TRANSITION_AUTO_BOOKMARK); |
| 686 } | 686 } |
| 687 | 687 |
| 688 void TranslateManager::DoTranslatePage(WebContents* tab, | 688 void TranslateManager::DoTranslatePage(WebContents* tab, |
| 689 const std::string& translate_script, | 689 const std::string& translate_script, |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 899 InfoBarTabHelper* infobar_helper = wrapper->infobar_tab_helper(); | 899 InfoBarTabHelper* infobar_helper = wrapper->infobar_tab_helper(); |
| 900 | 900 |
| 901 for (size_t i = 0; i < infobar_helper->infobar_count(); ++i) { | 901 for (size_t i = 0; i < infobar_helper->infobar_count(); ++i) { |
| 902 TranslateInfoBarDelegate* delegate = | 902 TranslateInfoBarDelegate* delegate = |
| 903 infobar_helper->GetInfoBarDelegateAt(i)->AsTranslateInfoBarDelegate(); | 903 infobar_helper->GetInfoBarDelegateAt(i)->AsTranslateInfoBarDelegate(); |
| 904 if (delegate) | 904 if (delegate) |
| 905 return delegate; | 905 return delegate; |
| 906 } | 906 } |
| 907 return NULL; | 907 return NULL; |
| 908 } | 908 } |
| OLD | NEW |