Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(462)

Side by Side Diff: chrome/browser/ui/intents/web_intent_picker_controller.cc

Issue 8776040: Trim chrome/browser/DEPS after the recent refactorings. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/DEPS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/ui/intents/web_intent_picker_controller.h" 5 #include "chrome/browser/ui/intents/web_intent_picker_controller.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
11 #include "chrome/browser/ui/browser.h" 11 #include "chrome/browser/ui/browser.h"
12 #include "chrome/browser/favicon/favicon_service.h" 12 #include "chrome/browser/favicon/favicon_service.h"
13 #include "chrome/browser/intents/web_intents_registry.h" 13 #include "chrome/browser/intents/web_intents_registry.h"
14 #include "chrome/browser/intents/web_intents_registry_factory.h" 14 #include "chrome/browser/intents/web_intents_registry_factory.h"
15 #include "chrome/browser/profiles/profile.h" 15 #include "chrome/browser/profiles/profile.h"
16 #include "chrome/browser/tabs/tab_strip_model.h" 16 #include "chrome/browser/tabs/tab_strip_model.h"
17 #include "chrome/browser/ui/browser_navigator.h" 17 #include "chrome/browser/ui/browser_navigator.h"
18 #include "chrome/browser/ui/intents/web_intent_picker.h" 18 #include "chrome/browser/ui/intents/web_intent_picker.h"
19 #include "chrome/browser/ui/intents/web_intent_picker_factory.h" 19 #include "chrome/browser/ui/intents/web_intent_picker_factory.h"
20 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" 20 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
21 #include "chrome/browser/webdata/web_data_service.h" 21 #include "chrome/browser/webdata/web_data_service.h"
22 #include "content/browser/intents/intent_injector.h" 22 #include "content/browser/intents/intent_injector.h"
23 #include "content/browser/tab_contents/tab_contents.h" 23 #include "content/browser/tab_contents/tab_contents.h"
24 #include "content/common/intents_messages.h"
25 #include "content/public/browser/intents_host.h" 24 #include "content/public/browser/intents_host.h"
26 #include "content/public/browser/notification_source.h" 25 #include "content/public/browser/notification_source.h"
27 #include "ui/gfx/codec/png_codec.h" 26 #include "ui/gfx/codec/png_codec.h"
28 #include "webkit/glue/web_intent_service_data.h" 27 #include "webkit/glue/web_intent_service_data.h"
29 28
30 namespace { 29 namespace {
31 30
32 // Gets the favicon service for the profile in |tab_contents|. 31 // Gets the favicon service for the profile in |tab_contents|.
33 FaviconService* GetFaviconService(TabContentsWrapper* wrapper) { 32 FaviconService* GetFaviconService(TabContentsWrapper* wrapper) {
34 return wrapper->profile()->GetFaviconService(Profile::EXPLICIT_ACCESS); 33 return wrapper->profile()->GetFaviconService(Profile::EXPLICIT_ACCESS);
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 if (gfx::PNGCodec::Decode(favicon_data.image_data->front(), 323 if (gfx::PNGCodec::Decode(favicon_data.image_data->front(),
325 favicon_data.image_data->size(), 324 favicon_data.image_data->size(),
326 &icon_bitmap)) { 325 &icon_bitmap)) {
327 controller_->OnFaviconDataAvailable(index, icon_bitmap); 326 controller_->OnFaviconDataAvailable(index, icon_bitmap);
328 return; 327 return;
329 } 328 }
330 } 329 }
331 330
332 controller_->OnFaviconDataUnavailable(index); 331 controller_->OnFaviconDataUnavailable(index);
333 } 332 }
OLDNEW
« no previous file with comments | « chrome/browser/DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698