OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/android/webapps/add_to_homescreen_data_fetcher.h" | 5 #include "chrome/browser/android/webapps/add_to_homescreen_data_fetcher.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/location.h" | 11 #include "base/location.h" |
12 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
| 13 #include "base/threading/sequenced_worker_pool.h" |
13 #include "chrome/browser/android/offline_pages/offline_page_utils.h" | 14 #include "chrome/browser/android/offline_pages/offline_page_utils.h" |
14 #include "chrome/browser/android/shortcut_helper.h" | 15 #include "chrome/browser/android/shortcut_helper.h" |
15 #include "chrome/browser/android/webapk/webapk_web_manifest_checker.h" | 16 #include "chrome/browser/android/webapk/webapk_web_manifest_checker.h" |
16 #include "chrome/browser/favicon/favicon_service_factory.h" | 17 #include "chrome/browser/favicon/favicon_service_factory.h" |
17 #include "chrome/browser/installable/installable_manager.h" | 18 #include "chrome/browser/installable/installable_manager.h" |
18 #include "chrome/browser/manifest/manifest_icon_selector.h" | 19 #include "chrome/browser/manifest/manifest_icon_selector.h" |
19 #include "chrome/browser/profiles/profile.h" | 20 #include "chrome/browser/profiles/profile.h" |
20 #include "chrome/common/chrome_constants.h" | 21 #include "chrome/common/chrome_constants.h" |
21 #include "chrome/common/render_messages.h" | 22 #include "chrome/common/render_messages.h" |
22 #include "chrome/common/web_application_info.h" | 23 #include "chrome/common/web_application_info.h" |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 void AddToHomescreenDataFetcher::NotifyObserver(const SkBitmap& primary_icon) { | 333 void AddToHomescreenDataFetcher::NotifyObserver(const SkBitmap& primary_icon) { |
333 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); | 334 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); |
334 if (!web_contents() || !weak_observer_ || is_icon_saved_) | 335 if (!web_contents() || !weak_observer_ || is_icon_saved_) |
335 return; | 336 return; |
336 | 337 |
337 is_icon_saved_ = true; | 338 is_icon_saved_ = true; |
338 primary_icon_ = primary_icon; | 339 primary_icon_ = primary_icon; |
339 is_ready_ = true; | 340 is_ready_ = true; |
340 weak_observer_->OnDataAvailable(shortcut_info_, primary_icon_, badge_icon_); | 341 weak_observer_->OnDataAvailable(shortcut_info_, primary_icon_, badge_icon_); |
341 } | 342 } |
OLD | NEW |