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 AddRef(); // Balanced in GotLanguage() | 842 // Figure out what language |contents| contains. This sends an async call via |
843 | 843 // the browser to the renderer to determine the language of the tab the |
844 NavigationEntry* entry = contents->controller().GetActiveEntry(); | 844 // renderer has. The renderer sends back the language of the tab after the |
845 if (entry) { | 845 // tab loads (it may be delayed) to the browser, which in turn notifies this |
846 std::string language = entry->language(); | 846 // object that the language has been received. |
847 if (!language.empty()) { | 847 contents->GetPageLanguage(); |
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. | |
857 registrar_.Add(this, NotificationType::TAB_LANGUAGE_DETERMINED, | 848 registrar_.Add(this, NotificationType::TAB_LANGUAGE_DETERMINED, |
858 Source<RenderViewHost>(contents->render_view_host())); | 849 NotificationService::AllSources()); |
859 | 850 AddRef(); // balanced in Observe() |
860 return true; | 851 return true; |
861 } | 852 } |
862 | 853 |
863 void DetectTabLanguageFunction::Observe(NotificationType type, | 854 void DetectTabLanguageFunction::Observe(NotificationType type, |
864 const NotificationSource& source, | 855 const NotificationSource& source, |
865 const NotificationDetails& details) { | 856 const NotificationDetails& details) { |
866 DCHECK(type == NotificationType::TAB_LANGUAGE_DETERMINED); | 857 DCHECK(type == NotificationType::TAB_LANGUAGE_DETERMINED); |
867 std::string language(*Details<std::string>(details).ptr()); | 858 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) { | |
874 result_.reset(Value::CreateStringValue(language.c_str())); | 859 result_.reset(Value::CreateStringValue(language.c_str())); |
875 SendResponse(true); | 860 SendResponse(true); |
876 | 861 Release(); // balanced in Run() |
877 Release(); // Balanced in Run() | |
878 } | 862 } |
879 | 863 |
880 // static helpers | 864 // static helpers |
881 | 865 |
882 static Browser* GetBrowserInProfileWithId(Profile* profile, | 866 static Browser* GetBrowserInProfileWithId(Profile* profile, |
883 const int window_id, | 867 const int window_id, |
884 std::string* error_message) { | 868 std::string* error_message) { |
885 for (BrowserList::const_iterator browser = BrowserList::begin(); | 869 for (BrowserList::const_iterator browser = BrowserList::begin(); |
886 browser != BrowserList::end(); ++browser) { | 870 browser != BrowserList::end(); ++browser) { |
887 if ((*browser)->profile() == profile && | 871 if ((*browser)->profile() == profile && |
(...skipping 16 matching lines...) Expand all Loading... |
904 if (ExtensionTabUtil::GetTabById(tab_id, profile, browser, tab_strip, | 888 if (ExtensionTabUtil::GetTabById(tab_id, profile, browser, tab_strip, |
905 contents, tab_index)) | 889 contents, tab_index)) |
906 return true; | 890 return true; |
907 | 891 |
908 if (error_message) | 892 if (error_message) |
909 *error_message = ExtensionErrorUtils::FormatErrorMessage( | 893 *error_message = ExtensionErrorUtils::FormatErrorMessage( |
910 keys::kTabNotFoundError, IntToString(tab_id)); | 894 keys::kTabNotFoundError, IntToString(tab_id)); |
911 | 895 |
912 return false; | 896 return false; |
913 } | 897 } |
OLD | NEW |