OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/extensions/extension_tabs_module.h" | 5 #include "chrome/browser/extensions/extension_tabs_module.h" |
6 | 6 |
7 #include "app/gfx/codec/jpeg_codec.h" | 7 #include "app/gfx/codec/jpeg_codec.h" |
8 #include "base/base64.h" | 8 #include "base/base64.h" |
9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
10 #include "chrome/browser/browser.h" | 10 #include "chrome/browser/browser.h" |
(...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
832 return false; | 832 return false; |
833 } else { | 833 } else { |
834 browser = dispatcher()->GetBrowser(); | 834 browser = dispatcher()->GetBrowser(); |
835 if (!browser) | 835 if (!browser) |
836 return false; | 836 return false; |
837 contents = browser->tabstrip_model()->GetSelectedTabContents(); | 837 contents = browser->tabstrip_model()->GetSelectedTabContents(); |
838 if (!contents) | 838 if (!contents) |
839 return false; | 839 return false; |
840 } | 840 } |
841 | 841 |
842 // Figure out what language |contents| contains. This sends an async call via | 842 AddRef(); // Balanced in GotLanguage() |
843 // the browser to the renderer to determine the language of the tab the | 843 |
844 // renderer has. The renderer sends back the language of the tab after the | 844 NavigationEntry* entry = contents->controller().GetActiveEntry(); |
845 // tab loads (it may be delayed) to the browser, which in turn notifies this | 845 if (entry) { |
846 // object that the language has been received. | 846 std::string language = entry->language(); |
847 contents->GetPageLanguage(); | 847 if (!language.empty()) { |
| 848 // Delay the callback invocation until after the current JS call has |
| 849 // returned. |
| 850 MessageLoop::current()->PostTask(FROM_HERE, NewRunnableMethod( |
| 851 this, &DetectTabLanguageFunction::GotLanguage, language)); |
| 852 return true; |
| 853 } |
| 854 } |
| 855 // The tab contents does not know its language yet. Let's wait until it |
| 856 // receives it. |
848 registrar_.Add(this, NotificationType::TAB_LANGUAGE_DETERMINED, | 857 registrar_.Add(this, NotificationType::TAB_LANGUAGE_DETERMINED, |
849 NotificationService::AllSources()); | 858 Source<RenderViewHost>(contents->render_view_host())); |
850 AddRef(); // balanced in Observe() | 859 |
851 return true; | 860 return true; |
852 } | 861 } |
853 | 862 |
854 void DetectTabLanguageFunction::Observe(NotificationType type, | 863 void DetectTabLanguageFunction::Observe(NotificationType type, |
855 const NotificationSource& source, | 864 const NotificationSource& source, |
856 const NotificationDetails& details) { | 865 const NotificationDetails& details) { |
857 DCHECK(type == NotificationType::TAB_LANGUAGE_DETERMINED); | 866 DCHECK(type == NotificationType::TAB_LANGUAGE_DETERMINED); |
858 std::string language(*Details<std::string>(details).ptr()); | 867 std::string language(*Details<std::string>(details).ptr()); |
| 868 registrar_.Remove(this, NotificationType::TAB_LANGUAGE_DETERMINED, source); |
| 869 |
| 870 GotLanguage(language); |
| 871 } |
| 872 |
| 873 void DetectTabLanguageFunction::GotLanguage(const std::string& language) { |
859 result_.reset(Value::CreateStringValue(language.c_str())); | 874 result_.reset(Value::CreateStringValue(language.c_str())); |
860 SendResponse(true); | 875 SendResponse(true); |
861 Release(); // balanced in Run() | 876 |
| 877 Release(); // Balanced in Run() |
862 } | 878 } |
863 | 879 |
864 // static helpers | 880 // static helpers |
865 | 881 |
866 static Browser* GetBrowserInProfileWithId(Profile* profile, | 882 static Browser* GetBrowserInProfileWithId(Profile* profile, |
867 const int window_id, | 883 const int window_id, |
868 std::string* error_message) { | 884 std::string* error_message) { |
869 for (BrowserList::const_iterator browser = BrowserList::begin(); | 885 for (BrowserList::const_iterator browser = BrowserList::begin(); |
870 browser != BrowserList::end(); ++browser) { | 886 browser != BrowserList::end(); ++browser) { |
871 if ((*browser)->profile() == profile && | 887 if ((*browser)->profile() == profile && |
(...skipping 16 matching lines...) Expand all Loading... |
888 if (ExtensionTabUtil::GetTabById(tab_id, profile, browser, tab_strip, | 904 if (ExtensionTabUtil::GetTabById(tab_id, profile, browser, tab_strip, |
889 contents, tab_index)) | 905 contents, tab_index)) |
890 return true; | 906 return true; |
891 | 907 |
892 if (error_message) | 908 if (error_message) |
893 *error_message = ExtensionErrorUtils::FormatErrorMessage( | 909 *error_message = ExtensionErrorUtils::FormatErrorMessage( |
894 keys::kTabNotFoundError, IntToString(tab_id)); | 910 keys::kTabNotFoundError, IntToString(tab_id)); |
895 | 911 |
896 return false; | 912 return false; |
897 } | 913 } |
OLD | NEW |