blob: 02929623f548aae0bfe717ff5ee963cdb31980a4 (
plain)
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
|
// Copyright 2013 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.
#ifndef CHROME_BROWSER_ANDROID_SHORTCUT_HELPER_H_
#define CHROME_BROWSER_ANDROID_SHORTCUT_HELPER_H_
#include "base/android/jni_android.h"
#include "base/android/jni_weak_ref.h"
#include "base/macros.h"
#include "chrome/browser/android/shortcut_info.h"
#include "third_party/skia/include/core/SkBitmap.h"
namespace content {
class WebContents;
} // namespace content
// ShortcutHelper is the C++ counterpart of org.chromium.chrome.browser's
// ShortcutHelper in Java.
class ShortcutHelper {
public:
// Registers JNI hooks.
static bool RegisterShortcutHelper(JNIEnv* env);
// Adds a shortcut to the launcher using a SkBitmap.
// Must be called on the IO thread.
static void AddShortcutInBackgroundWithSkBitmap(const ShortcutInfo& info,
const std::string& webapp_id,
const SkBitmap& icon_bitmap);
// Returns the ideal size for an icon representing a web app.
static int GetIdealHomescreenIconSizeInDp();
// Returns the minimum size for an icon representing a web app.
static int GetMinimumHomescreenIconSizeInDp();
// Returns the ideal size for an image displayed on a web app's splash
// screen.
static int GetIdealSplashImageSizeInDp();
// Returns the minimum size for an image displayed on a web app's splash
// screen.
static int GetMinimumSplashImageSizeInDp();
// Fetches the splash screen image and stores it inside the WebappDataStorage
// of the webapp.
static void FetchSplashScreenImage(content::WebContents* web_contents,
const GURL& image_url,
const int ideal_splash_image_size_in_dp,
const int minimum_splash_image_size_in_dp,
const std::string& webapp_id);
// Stores the data of the webapp which is not placed inside the shortcut.
static void StoreWebappData(const std::string& webapp_id,
const SkBitmap& splash_image);
// Modify the given icon to matche the launcher requirements, then returns the
// new icon. It might generate an entirely new icon, in which case,
// |is_generated| will be set to |true|.
static SkBitmap FinalizeLauncherIcon(const SkBitmap& icon,
const GURL& url,
bool* is_generated);
private:
ShortcutHelper() = delete;
~ShortcutHelper() = delete;
DISALLOW_COPY_AND_ASSIGN(ShortcutHelper);
};
#endif // CHROME_BROWSER_ANDROID_SHORTCUT_HELPER_H_
|