1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/intents/web_intent_picker_controller.h"
#include <vector>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/memory/scoped_ptr.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/extensions/platform_app_launcher.h"
#include "chrome/browser/extensions/webstore_installer.h"
#include "chrome/browser/favicon/favicon_service.h"
#include "chrome/browser/intents/cws_intents_registry_factory.h"
#include "chrome/browser/intents/default_web_intent_service.h"
#include "chrome/browser/intents/web_intents_registry_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/tab_contents/tab_util.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/browser_navigator.h"
#include "chrome/browser/ui/intents/web_intent_picker.h"
#include "chrome/browser/ui/intents/web_intent_picker_model.h"
#include "chrome/browser/ui/tab_contents/tab_contents.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/browser/webdata/web_data_service.h"
#include "chrome/common/chrome_notification_types.h"
#include "chrome/common/url_constants.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/navigation_controller.h"
#include "content/public/browser/notification_source.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_intents_dispatcher.h"
#include "grit/generated_resources.h"
#include "net/base/load_flags.h"
#include "net/url_request/url_fetcher.h"
#include "net/url_request/url_fetcher_delegate.h"
#include "skia/ext/image_operations.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/codec/png_codec.h"
#include "ui/gfx/favicon_size.h"
#include "ui/gfx/image/image.h"
#include "webkit/glue/web_intent_service_data.h"
namespace {
const char kShareActionURL[] = "http://webintents.org/share";
const char kEditActionURL[] = "http://webintents.org/edit";
const char kViewActionURL[] = "http://webintents.org/view";
const char kPickActionURL[] = "http://webintents.org/pick";
const char kSubscribeActionURL[] = "http://webintents.org/subscribe";
const char kSaveActionURL[] = "http://webintents.org/save";
// Gets the favicon service for the profile in |tab_contents|.
FaviconService* GetFaviconService(TabContents* tab_contents) {
return tab_contents->profile()->GetFaviconService(Profile::EXPLICIT_ACCESS);
}
// Gets the web intents registry for the profile in |tab_contents|.
WebIntentsRegistry* GetWebIntentsRegistry(TabContents* tab_contents) {
return WebIntentsRegistryFactory::GetForProfile(tab_contents->profile());
}
// Gets the Chrome web store intents registry for the profile in |tab_contents|.
CWSIntentsRegistry* GetCWSIntentsRegistry(TabContents* tab_contents) {
return CWSIntentsRegistryFactory::GetForProfile(tab_contents->profile());
}
WebIntentPickerModel::Disposition ConvertDisposition(
webkit_glue::WebIntentServiceData::Disposition disposition) {
switch (disposition) {
case webkit_glue::WebIntentServiceData::DISPOSITION_INLINE:
return WebIntentPickerModel::DISPOSITION_INLINE;
case webkit_glue::WebIntentServiceData::DISPOSITION_WINDOW:
return WebIntentPickerModel::DISPOSITION_WINDOW;
default:
NOTREACHED();
return WebIntentPickerModel::DISPOSITION_WINDOW;
}
}
// Returns the action-specific string for |action|.
string16 GetIntentActionString(const std::string& action) {
if (!action.compare(kShareActionURL))
return l10n_util::GetStringUTF16(IDS_WEB_INTENTS_ACTION_SHARE);
else if (!action.compare(kEditActionURL))
return l10n_util::GetStringUTF16(IDS_WEB_INTENTS_ACTION_EDIT);
else if (!action.compare(kViewActionURL))
return l10n_util::GetStringUTF16(IDS_WEB_INTENTS_ACTION_VIEW);
else if (!action.compare(kPickActionURL))
return l10n_util::GetStringUTF16(IDS_WEB_INTENTS_ACTION_PICK);
else if (!action.compare(kSubscribeActionURL))
return l10n_util::GetStringUTF16(IDS_WEB_INTENTS_ACTION_SUBSCRIBE);
else if (!action.compare(kSaveActionURL))
return l10n_util::GetStringUTF16(IDS_WEB_INTENTS_ACTION_SAVE);
else
return l10n_util::GetStringUTF16(IDS_INTENT_PICKER_CHOOSE_SERVICE);
}
// Self-deleting trampoline that forwards A URLFetcher response to a callback.
class URLFetcherTrampoline : public net::URLFetcherDelegate {
public:
typedef base::Callback<void(const net::URLFetcher* source)>
ForwardingCallback;
explicit URLFetcherTrampoline(const ForwardingCallback& callback);
~URLFetcherTrampoline();
// net::URLFetcherDelegate implementation.
virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE;
private:
// Fowarding callback from |OnURLFetchComplete|.
ForwardingCallback callback_;
};
URLFetcherTrampoline::URLFetcherTrampoline(const ForwardingCallback& callback)
: callback_(callback) {
}
URLFetcherTrampoline::~URLFetcherTrampoline() {
}
void URLFetcherTrampoline::OnURLFetchComplete(
const net::URLFetcher* source) {
DCHECK(!callback_.is_null());
callback_.Run(source);
delete source;
delete this;
}
} // namespace
WebIntentPickerController::WebIntentPickerController(
TabContents* tab_contents)
: tab_contents_(tab_contents),
picker_(NULL),
picker_model_(new WebIntentPickerModel()),
pending_async_count_(0),
pending_registry_calls_count_(0),
picker_shown_(false),
intents_dispatcher_(NULL),
service_tab_(NULL),
weak_ptr_factory_(this) {
content::NavigationController* controller =
&tab_contents->web_contents()->GetController();
registrar_.Add(this, content::NOTIFICATION_LOAD_START,
content::Source<content::NavigationController>(controller));
registrar_.Add(this, chrome::NOTIFICATION_TAB_CLOSING,
content::Source<content::NavigationController>(controller));
}
WebIntentPickerController::~WebIntentPickerController() {
}
// TODO(gbillock): combine this with ShowDialog.
void WebIntentPickerController::SetIntentsDispatcher(
content::WebIntentsDispatcher* intents_dispatcher) {
intents_dispatcher_ = intents_dispatcher;
intents_dispatcher_->RegisterReplyNotification(
base::Bind(&WebIntentPickerController::OnSendReturnMessage,
weak_ptr_factory_.GetWeakPtr()));
}
void WebIntentPickerController::ShowDialog(const string16& action,
const string16& type) {
// Only show a picker once.
// TODO(gbillock): There's a hole potentially admitting multiple
// in-flight dispatches since we don't create the picker
// in this method, but only after calling the registry.
if (picker_shown_) {
if (intents_dispatcher_) {
intents_dispatcher_->SendReplyMessage(
webkit_glue::WEB_INTENT_REPLY_FAILURE,
ASCIIToUTF16("Simultaneous intent invocation."));
}
return;
}
// TODO(binji): Figure out what to do when intents are invoked from incognito
// mode.
if (tab_contents_->profile()->IsOffTheRecord()) {
if (intents_dispatcher_) {
intents_dispatcher_->SendReplyMessage(
webkit_glue::WEB_INTENT_REPLY_FAILURE, string16());
}
return;
}
picker_model_->Clear();
picker_model_->set_action(action);
picker_model_->set_mimetype(type);
// If the intent is explicit, skip showing the picker.
if (intents_dispatcher_) {
const GURL& service = intents_dispatcher_->GetIntent().service;
if (service.is_valid()) {
// TODO(gbillock): When we can parse pages for the intent tag,
// take out this requirement that explicit intents dispatch to
// extension urls.
if (!service.SchemeIs(chrome::kExtensionScheme)) {
intents_dispatcher_->SendReplyMessage(
webkit_glue::WEB_INTENT_REPLY_FAILURE, ASCIIToUTF16(
"Only extension urls are supported for explicit invocation"));
return;
}
// Get services from the registry to verify a registered extension
// page for this action/type if it is permitted to be dispatched. (Also
// required to find disposition set by service.)
pending_async_count_++;
GetWebIntentsRegistry(tab_contents_)->GetIntentServices(
action, type, base::Bind(
&WebIntentPickerController::WebIntentServicesForExplicitIntent,
weak_ptr_factory_.GetWeakPtr()));
return;
}
}
pending_async_count_ += 2;
pending_registry_calls_count_ += 1;
GetWebIntentsRegistry(tab_contents_)->GetIntentServices(
action, type,
base::Bind(&WebIntentPickerController::OnWebIntentServicesAvailable,
weak_ptr_factory_.GetWeakPtr()));
GURL invoking_url = tab_contents_->web_contents()->GetURL();
if (invoking_url.is_valid()) {
pending_async_count_++;
pending_registry_calls_count_++;
GetWebIntentsRegistry(tab_contents_)->GetDefaultIntentService(
action, type, invoking_url,
base::Bind(&WebIntentPickerController::OnWebIntentDefaultsAvailable,
weak_ptr_factory_.GetWeakPtr()));
}
GetCWSIntentsRegistry(tab_contents_)->GetIntentServices(
action, type,
base::Bind(&WebIntentPickerController::OnCWSIntentServicesAvailable,
weak_ptr_factory_.GetWeakPtr()));
}
void WebIntentPickerController::Observe(
int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
DCHECK(type == content::NOTIFICATION_LOAD_START ||
type == chrome::NOTIFICATION_TAB_CLOSING);
ClosePicker();
}
void WebIntentPickerController::OnServiceChosen(const GURL& url,
Disposition disposition) {
ExtensionService* service = tab_contents_->profile()->GetExtensionService();
DCHECK(service);
const extensions::Extension* extension = service->GetInstalledApp(url);
if (extension && extension->is_platform_app()) {
extensions::LaunchPlatformAppWithWebIntent(tab_contents_->profile(),
extension, intents_dispatcher_->GetIntent());
// TODO(benwells): hook up return pathway to allow platform app to post
// success or failure.
intents_dispatcher_->SendReplyMessage(
webkit_glue::WEB_INTENT_REPLY_SUCCESS, string16());
ClosePicker();
return;
}
switch (disposition) {
case WebIntentPickerModel::DISPOSITION_INLINE:
// Set the model to inline disposition. It will notify the picker which
// will respond (via OnInlineDispositionWebContentsCreated) with the
// WebContents to dispatch the intent to.
picker_model_->SetInlineDisposition(url);
break;
case WebIntentPickerModel::DISPOSITION_WINDOW: {
Browser* browser = browser::FindBrowserWithWebContents(
tab_contents_->web_contents());
TabContents* contents = Browser::TabContentsFactory(
tab_contents_->profile(),
tab_util::GetSiteInstanceForNewTab(
tab_contents_->profile(), url),
MSG_ROUTING_NONE, NULL, NULL);
intents_dispatcher_->DispatchIntent(contents->web_contents());
service_tab_ = contents->web_contents();
// This call performs all the tab strip manipulation, notifications, etc.
// Since we're passing in a target_contents, it assumes that we will
// navigate the page ourselves, though.
browser::NavigateParams params(browser,
url,
content::PAGE_TRANSITION_AUTO_BOOKMARK);
params.target_contents = contents;
params.disposition = NEW_FOREGROUND_TAB;
params.profile = tab_contents_->profile();
browser::Navigate(¶ms);
service_tab_->GetController().LoadURL(
url, content::Referrer(),
content::PAGE_TRANSITION_AUTO_BOOKMARK, std::string());
ClosePicker();
break;
}
default:
NOTREACHED();
break;
}
}
void WebIntentPickerController::OnInlineDispositionWebContentsCreated(
content::WebContents* web_contents) {
if (web_contents)
intents_dispatcher_->DispatchIntent(web_contents);
}
void WebIntentPickerController::OnExtensionInstallRequested(
const std::string& id) {
scoped_ptr<WebstoreInstaller::Approval> approval(
WebstoreInstaller::Approval::CreateWithInstallPrompt(
tab_contents_->profile()));
scoped_refptr<WebstoreInstaller> installer = new WebstoreInstaller(
tab_contents_->profile(), this,
&tab_contents_->web_contents()->GetController(), id,
approval.Pass(), WebstoreInstaller::FLAG_INLINE_INSTALL);
pending_async_count_++;
installer->Start();
}
void WebIntentPickerController::OnExtensionLinkClicked(const std::string& id) {
// Navigate from source tab.
Browser* browser =
browser::FindBrowserWithWebContents(tab_contents_->web_contents());
GURL extension_url(extension_urls::GetWebstoreItemDetailURLPrefix() + id);
browser::NavigateParams params(browser, extension_url,
content::PAGE_TRANSITION_AUTO_BOOKMARK);
params.disposition = NEW_FOREGROUND_TAB;
browser::Navigate(¶ms);
}
void WebIntentPickerController::OnSuggestionsLinkClicked() {
// Navigate from source tab.
Browser* browser =
browser::FindBrowserWithWebContents(tab_contents_->web_contents());
GURL query_url = extension_urls::GetWebstoreIntentQueryURL(
UTF16ToUTF8(picker_model_->action()),
UTF16ToUTF8(picker_model_->mimetype()));
browser::NavigateParams params(browser, query_url,
content::PAGE_TRANSITION_AUTO_BOOKMARK);
params.disposition = NEW_FOREGROUND_TAB;
browser::Navigate(¶ms);
}
void WebIntentPickerController::OnPickerClosed() {
if (!intents_dispatcher_)
return;
if (service_tab_) {
intents_dispatcher_->SendReplyMessage(
webkit_glue::WEB_INTENT_SERVICE_CONTENTS_CLOSED, string16());
} else {
intents_dispatcher_->SendReplyMessage(
webkit_glue::WEB_INTENT_PICKER_CANCELLED, string16());
}
ClosePicker();
}
void WebIntentPickerController::OnChooseAnotherService() {
DCHECK(intents_dispatcher_);
DCHECK(!service_tab_); // Can only be invoked from inline disposition.
intents_dispatcher_->ResetDispatch();
}
void WebIntentPickerController::OnClosing() {
picker_shown_ = false;
picker_ = NULL;
}
void WebIntentPickerController::OnExtensionInstallSuccess(
const std::string& id) {
picker_->OnExtensionInstallSuccess(id);
pending_async_count_++;
GetWebIntentsRegistry(tab_contents_)->GetIntentServicesForExtensionFilter(
picker_model_->action(),
picker_model_->mimetype(),
id,
base::Bind(
&WebIntentPickerController::OnExtensionInstallServiceAvailable,
weak_ptr_factory_.GetWeakPtr()));
AsyncOperationFinished();
}
void WebIntentPickerController::OnExtensionInstallFailure(
const std::string& id,
const std::string& error) {
picker_->OnExtensionInstallFailure(id);
AsyncOperationFinished();
}
void WebIntentPickerController::OnSendReturnMessage(
webkit_glue::WebIntentReplyType reply_type) {
ClosePicker();
if (service_tab_ &&
reply_type != webkit_glue::WEB_INTENT_SERVICE_CONTENTS_CLOSED) {
Browser* browser = browser::FindBrowserWithWebContents(service_tab_);
if (browser) {
int index = browser->tab_strip_model()->GetIndexOfWebContents(
service_tab_);
browser->tab_strip_model()->CloseTabContentsAt(
index, TabStripModel::CLOSE_CREATE_HISTORICAL_TAB);
// Activate source tab.
Browser* source_browser =
browser::FindBrowserWithWebContents(tab_contents_->web_contents());
if (source_browser) {
int source_index = source_browser->tab_strip_model()->
GetIndexOfTabContents(tab_contents_);
source_browser->ActivateTabAt(source_index, false);
}
}
service_tab_ = NULL;
}
intents_dispatcher_ = NULL;
}
void WebIntentPickerController::OnWebIntentServicesAvailable(
const std::vector<webkit_glue::WebIntentServiceData>& services) {
FaviconService* favicon_service = GetFaviconService(tab_contents_);
for (size_t i = 0; i < services.size(); ++i) {
picker_model_->AddInstalledService(
services[i].title,
services[i].service_url,
ConvertDisposition(services[i].disposition));
pending_async_count_++;
FaviconService::Handle handle = favicon_service->GetFaviconForURL(
services[i].service_url,
history::FAVICON,
&favicon_consumer_,
base::Bind(
&WebIntentPickerController::OnFaviconDataAvailable,
weak_ptr_factory_.GetWeakPtr()));
favicon_consumer_.SetClientData(favicon_service, handle, i);
}
RegistryCallsCompleted();
AsyncOperationFinished();
}
void WebIntentPickerController::WebIntentServicesForExplicitIntent(
const std::vector<webkit_glue::WebIntentServiceData>& services) {
DCHECK(intents_dispatcher_);
DCHECK(intents_dispatcher_->GetIntent().service.is_valid());
for (size_t i = 0; i < services.size(); ++i) {
if (services[i].service_url != intents_dispatcher_->GetIntent().service)
continue;
picker_model_->AddInstalledService(
services[i].title,
services[i].service_url,
ConvertDisposition(services[i].disposition));
pending_async_count_++;
FaviconService* favicon_service = GetFaviconService(tab_contents_);
FaviconService::Handle handle = favicon_service->GetFaviconForURL(
services[i].service_url,
history::FAVICON,
&favicon_consumer_,
base::Bind(
&WebIntentPickerController::OnFaviconDataAvailable,
weak_ptr_factory_.GetWeakPtr()));
favicon_consumer_.SetClientData(
favicon_service, handle,
picker_model_->GetInstalledServiceCount() - 1);
if (services[i].disposition ==
webkit_glue::WebIntentServiceData::DISPOSITION_INLINE)
CreatePicker();
OnServiceChosen(services[i].service_url,
ConvertDisposition(services[i].disposition));
AsyncOperationFinished();
return;
}
// No acceptable extension. The intent cannot be dispatched.
intents_dispatcher_->SendReplyMessage(
webkit_glue::WEB_INTENT_REPLY_FAILURE, ASCIIToUTF16(
"Explicit extension URL is not available."));
AsyncOperationFinished();
}
void WebIntentPickerController::OnWebIntentDefaultsAvailable(
const DefaultWebIntentService& default_service) {
if (!default_service.service_url.empty()) {
DCHECK(default_service.suppression == 0);
picker_model_->set_default_service_url(GURL(default_service.service_url));
}
RegistryCallsCompleted();
AsyncOperationFinished();
}
void WebIntentPickerController::RegistryCallsCompleted() {
pending_registry_calls_count_--;
if (pending_registry_calls_count_ != 0) return;
if (picker_model_->default_service_url().is_valid()) {
// If there's a default service, dispatch to it immediately
// without showing the picker.
const WebIntentPickerModel::InstalledService* default_service =
picker_model_->GetInstalledServiceWithURL(
GURL(picker_model_->default_service_url()));
if (default_service != NULL) {
if (default_service->disposition ==
WebIntentPickerModel::DISPOSITION_INLINE)
CreatePicker();
OnServiceChosen(default_service->url, default_service->disposition);
return;
}
}
CreatePicker();
picker_->SetActionString(GetIntentActionString(
UTF16ToUTF8(picker_model_->action())));
}
void WebIntentPickerController::OnFaviconDataAvailable(
FaviconService::Handle handle, history::FaviconData favicon_data) {
size_t index = favicon_consumer_.GetClientDataForCurrentRequest();
if (favicon_data.is_valid()) {
SkBitmap icon_bitmap;
if (gfx::PNGCodec::Decode(favicon_data.image_data->front(),
favicon_data.image_data->size(),
&icon_bitmap)) {
gfx::Image icon_image(icon_bitmap);
picker_model_->UpdateFaviconAt(index, icon_image);
return;
}
}
AsyncOperationFinished();
}
void WebIntentPickerController::OnCWSIntentServicesAvailable(
const CWSIntentsRegistry::IntentExtensionList& extensions) {
ExtensionServiceInterface* extension_service =
tab_contents_->profile()->GetExtensionService();
for (size_t i = 0; i < extensions.size(); ++i) {
const CWSIntentsRegistry::IntentExtensionInfo& info = extensions[i];
if (extension_service->GetExtensionById(UTF16ToUTF8(info.id),
true)) { // Include disabled.
continue;
}
picker_model_->AddSuggestedExtension(
info.name,
info.id,
info.average_rating);
pending_async_count_++;
net::URLFetcher* icon_url_fetcher = net::URLFetcher::Create(
0,
info.icon_url,
net::URLFetcher::GET,
new URLFetcherTrampoline(
base::Bind(
&WebIntentPickerController::OnExtensionIconURLFetchComplete,
weak_ptr_factory_.GetWeakPtr(), info.id)));
icon_url_fetcher->SetLoadFlags(
net::LOAD_DO_NOT_SEND_COOKIES | net::LOAD_DO_NOT_SAVE_COOKIES);
icon_url_fetcher->SetRequestContext(
tab_contents_->profile()->GetRequestContext());
icon_url_fetcher->Start();
}
AsyncOperationFinished();
}
void WebIntentPickerController::OnExtensionIconURLFetchComplete(
const string16& extension_id, const net::URLFetcher* source) {
DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
if (source->GetResponseCode() != 200) {
AsyncOperationFinished();
return;
}
scoped_ptr<std::string> response(new std::string);
if (!source->GetResponseAsString(response.get())) {
AsyncOperationFinished();
return;
}
// I'd like to have the worker thread post a task directly to the UI thread
// to call OnExtensionIcon[Un]Available, but this doesn't work: To do so
// would require DecodeExtensionIconAndResize to be a member function (so it
// has access to |this|) but a weak pointer cannot be dereferenced on a
// thread other than the thread where the WeakPtrFactory was created. Since
// the stored |this| pointer is weak, DecodeExtensionIconAndResize asserts
// before it even starts.
//
// Instead, I package up the callbacks that I want the worker thread to call,
// and make DecodeExtensionIconAndResize static. The stored weak |this|
// pointers are not dereferenced until invocation (on the UI thread).
ExtensionIconAvailableCallback available_callback =
base::Bind(
&WebIntentPickerController::OnExtensionIconAvailable,
weak_ptr_factory_.GetWeakPtr(),
extension_id);
base::Closure unavailable_callback =
base::Bind(
&WebIntentPickerController::OnExtensionIconUnavailable,
weak_ptr_factory_.GetWeakPtr(),
extension_id);
// Decode PNG and resize on worker thread.
content::BrowserThread::PostBlockingPoolTask(
FROM_HERE,
base::Bind(&DecodeExtensionIconAndResize,
base::Passed(&response),
available_callback,
unavailable_callback));
}
// static
void WebIntentPickerController::DecodeExtensionIconAndResize(
scoped_ptr<std::string> icon_response,
const ExtensionIconAvailableCallback& callback,
const base::Closure& unavailable_callback) {
SkBitmap icon_bitmap;
if (gfx::PNGCodec::Decode(
reinterpret_cast<const unsigned char*>(icon_response->data()),
icon_response->length(),
&icon_bitmap)) {
SkBitmap resized_icon = skia::ImageOperations::Resize(
icon_bitmap,
skia::ImageOperations::RESIZE_BEST,
gfx::kFaviconSize, gfx::kFaviconSize);
gfx::Image icon_image(resized_icon);
content::BrowserThread::PostTask(
content::BrowserThread::UI,
FROM_HERE,
base::Bind(callback, icon_image));
} else {
content::BrowserThread::PostTask(
content::BrowserThread::UI,
FROM_HERE,
unavailable_callback);
}
}
void WebIntentPickerController::OnExtensionIconAvailable(
const string16& extension_id,
const gfx::Image& icon_image) {
picker_model_->SetSuggestedExtensionIconWithId(extension_id, icon_image);
AsyncOperationFinished();
}
void WebIntentPickerController::OnExtensionIconUnavailable(
const string16& extension_id) {
AsyncOperationFinished();
}
void WebIntentPickerController::OnExtensionInstallServiceAvailable(
const std::vector<webkit_glue::WebIntentServiceData>& services) {
DCHECK(services.size() > 0);
// TODO(binji): We're going to need to disambiguate if there are multiple
// services. For now, just choose the first.
const webkit_glue::WebIntentServiceData& service_data = services[0];
OnServiceChosen(
service_data.service_url,
ConvertDisposition(service_data.disposition));
AsyncOperationFinished();
}
void WebIntentPickerController::AsyncOperationFinished() {
DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
if (--pending_async_count_ == 0) {
if (picker_)
picker_->OnPendingAsyncCompleted();
}
}
void WebIntentPickerController::CreatePicker() {
// If picker is non-NULL, it was set by a test.
if (picker_ == NULL)
picker_ = WebIntentPicker::Create(tab_contents_, this, picker_model_.get());
picker_shown_ = true;
}
void WebIntentPickerController::ClosePicker() {
if (picker_)
picker_->Close();
}
|