| 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/extensions/extension_web_ui.h" | 5 #include "chrome/browser/extensions/extension_web_ui.h" |
| 6 | 6 |
| 7 #include <set> | 7 #include <set> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| 11 #include "base/string_util.h" | 11 #include "base/string_util.h" |
| 12 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
| 13 #include "chrome/browser/bookmarks/bookmark_manager_extension_api.h" | 13 #include "chrome/browser/extensions/api/bookmark_manager_private/bookmark_manage
r_private_api.h" |
| 14 #include "chrome/browser/extensions/extension_service.h" | 14 #include "chrome/browser/extensions/extension_service.h" |
| 15 #include "chrome/browser/extensions/extension_tab_util.h" | 15 #include "chrome/browser/extensions/extension_tab_util.h" |
| 16 #include "chrome/browser/extensions/image_loader.h" | 16 #include "chrome/browser/extensions/image_loader.h" |
| 17 #include "chrome/browser/favicon/favicon_util.h" | 17 #include "chrome/browser/favicon/favicon_util.h" |
| 18 #include "chrome/browser/prefs/pref_service.h" | 18 #include "chrome/browser/prefs/pref_service.h" |
| 19 #include "chrome/browser/prefs/scoped_user_pref_update.h" | 19 #include "chrome/browser/prefs/scoped_user_pref_update.h" |
| 20 #include "chrome/browser/profiles/profile.h" | 20 #include "chrome/browser/profiles/profile.h" |
| 21 #include "chrome/browser/ui/browser.h" | 21 #include "chrome/browser/ui/browser.h" |
| 22 #include "chrome/browser/ui/tab_contents/tab_contents.h" | 22 #include "chrome/browser/ui/tab_contents/tab_contents.h" |
| 23 #include "chrome/browser/ui/tab_contents/tab_contents_iterator.h" | 23 #include "chrome/browser/ui/tab_contents/tab_contents_iterator.h" |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 } | 166 } |
| 167 } | 167 } |
| 168 | 168 |
| 169 if (should_hide_url) | 169 if (should_hide_url) |
| 170 web_ui->HideURL(); | 170 web_ui->HideURL(); |
| 171 | 171 |
| 172 web_ui->SetBindings(bindings); | 172 web_ui->SetBindings(bindings); |
| 173 | 173 |
| 174 // Hack: A few things we specialize just for the bookmark manager. | 174 // Hack: A few things we specialize just for the bookmark manager. |
| 175 if (extension->id() == extension_misc::kBookmarkManagerId) { | 175 if (extension->id() == extension_misc::kBookmarkManagerId) { |
| 176 bookmark_manager_extension_event_router_.reset( | 176 bookmark_manager_event_router_.reset( |
| 177 new BookmarkManagerExtensionEventRouter(profile, | 177 new extensions::BookmarkManagerEventRouter(profile, |
| 178 web_ui->GetWebContents())); | 178 web_ui->GetWebContents())); |
| 179 | 179 |
| 180 web_ui->SetLinkTransitionType(content::PAGE_TRANSITION_AUTO_BOOKMARK); | 180 web_ui->SetLinkTransitionType(content::PAGE_TRANSITION_AUTO_BOOKMARK); |
| 181 } | 181 } |
| 182 } | 182 } |
| 183 | 183 |
| 184 ExtensionWebUI::~ExtensionWebUI() {} | 184 ExtensionWebUI::~ExtensionWebUI() {} |
| 185 | 185 |
| 186 BookmarkManagerExtensionEventRouter* | 186 extensions::BookmarkManagerEventRouter* |
| 187 ExtensionWebUI::bookmark_manager_extension_event_router() { | 187 ExtensionWebUI::bookmark_manager_event_router() { |
| 188 return bookmark_manager_extension_event_router_.get(); | 188 return bookmark_manager_event_router_.get(); |
| 189 } | 189 } |
| 190 | 190 |
| 191 //////////////////////////////////////////////////////////////////////////////// | 191 //////////////////////////////////////////////////////////////////////////////// |
| 192 // chrome:// URL overrides | 192 // chrome:// URL overrides |
| 193 | 193 |
| 194 // static | 194 // static |
| 195 void ExtensionWebUI::RegisterUserPrefs(PrefService* prefs) { | 195 void ExtensionWebUI::RegisterUserPrefs(PrefService* prefs) { |
| 196 prefs->RegisterDictionaryPref(kExtensionURLOverrides, | 196 prefs->RegisterDictionaryPref(kExtensionURLOverrides, |
| 197 PrefService::UNSYNCABLE_PREF); | 197 PrefService::UNSYNCABLE_PREF); |
| 198 } | 198 } |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 extensions::ImageLoader::ImageRepresentation::ALWAYS_RESIZE, | 442 extensions::ImageLoader::ImageRepresentation::ALWAYS_RESIZE, |
| 443 gfx::Size(pixel_size, pixel_size), | 443 gfx::Size(pixel_size, pixel_size), |
| 444 scale_factors[i])); | 444 scale_factors[i])); |
| 445 } | 445 } |
| 446 | 446 |
| 447 // LoadImagesAsync actually can run callback synchronously. We want to force | 447 // LoadImagesAsync actually can run callback synchronously. We want to force |
| 448 // async. | 448 // async. |
| 449 extensions::ImageLoader::Get(profile)->LoadImagesAsync( | 449 extensions::ImageLoader::Get(profile)->LoadImagesAsync( |
| 450 extension, info_list, base::Bind(&RunFaviconCallbackAsync, callback)); | 450 extension, info_list, base::Bind(&RunFaviconCallbackAsync, callback)); |
| 451 } | 451 } |
| OLD | NEW |