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

Side by Side Diff: chrome/browser/android/shortcut_helper.h

Issue 1310223002: webapps: initial addition of splash screen icon downloading (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@webapps-database-exp
Patch Set: Fix compile Created 5 years, 3 months 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef CHROME_BROWSER_ANDROID_SHORTCUT_HELPER_H_ 5 #ifndef CHROME_BROWSER_ANDROID_SHORTCUT_HELPER_H_
6 #define CHROME_BROWSER_ANDROID_SHORTCUT_HELPER_H_ 6 #define CHROME_BROWSER_ANDROID_SHORTCUT_HELPER_H_
7 7
8 #include "base/android/jni_android.h" 8 #include "base/android/jni_android.h"
9 #include "base/android/jni_weak_ref.h" 9 #include "base/android/jni_weak_ref.h"
10 #include "chrome/browser/android/shortcut_info.h" 10 #include "chrome/browser/android/shortcut_info.h"
11 #include "third_party/skia/include/core/SkBitmap.h" 11 #include "third_party/skia/include/core/SkBitmap.h"
12 12
13 namespace content {
14 class WebContents;
15 } // namespace content
16
13 // ShortcutHelper is the C++ counterpart of org.chromium.chrome.browser's 17 // ShortcutHelper is the C++ counterpart of org.chromium.chrome.browser's
14 // ShortcutHelper in Java. 18 // ShortcutHelper in Java.
15 class ShortcutHelper { 19 class ShortcutHelper {
16 public: 20 public:
17 // Registers JNI hooks. 21 // Registers JNI hooks.
18 static bool RegisterShortcutHelper(JNIEnv* env); 22 static bool RegisterShortcutHelper(JNIEnv* env);
19 23
20 // Adds a shortcut to the launcher using a SkBitmap. 24 // Adds a shortcut to the launcher using a SkBitmap.
21 // Must be called on the IO thread. 25 // Must be called on the IO thread.
22 static void AddShortcutInBackgroundWithSkBitmap(const ShortcutInfo& info, 26 static void AddShortcutInBackgroundWithSkBitmap(const ShortcutInfo& info,
27 const std::string& webapp_id,
23 const SkBitmap& icon_bitmap); 28 const SkBitmap& icon_bitmap);
29
30 // Fetches the splash screen image and stores it inside the WebappDataStorage
31 // of the webapp.
32 static void FetchSplashScreenImage(content::WebContents* web_contents,
33 const GURL& image_url,
34 const int ideal_splash_image_size_in_dp,
35 const std::string& webapp_id);
36
37 // Stores the data of the webapp which is not placed inside the shortcut.
38 static void StoreWebappData(const std::string& webapp_id,
39 const SkBitmap& splash_image);
40
24 private: 41 private:
25 ShortcutHelper(); 42 ShortcutHelper() = delete;
43 ~ShortcutHelper() = delete;
26 44
27 DISALLOW_COPY_AND_ASSIGN(ShortcutHelper); 45 DISALLOW_COPY_AND_ASSIGN(ShortcutHelper);
28 }; 46 };
29 47
30 #endif // CHROME_BROWSER_ANDROID_SHORTCUT_HELPER_H_ 48 #endif // CHROME_BROWSER_ANDROID_SHORTCUT_HELPER_H_
OLDNEW
« no previous file with comments | « chrome/browser/android/banners/app_banner_manager_android.cc ('k') | chrome/browser/android/shortcut_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698