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

Unified Diff: content/public/android/java/src/org/chromium/content/app/AppResource.java

Issue 10912172: [Android] Upstream ChromeBrowserProvider, the Android port ContentProvider implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: temporarily removing tests until we can compile and run them (soon) Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/android/java/src/org/chromium/content/app/AppResource.java
diff --git a/content/public/android/java/src/org/chromium/content/app/AppResource.java b/content/public/android/java/src/org/chromium/content/app/AppResource.java
index 11974f594ed17efce9f047edbc5f0f729ade962c..e306d74432f68d7689cb10915be0861bd8541124 100644
--- a/content/public/android/java/src/org/chromium/content/app/AppResource.java
+++ b/content/public/android/java/src/org/chromium/content/app/AppResource.java
@@ -15,6 +15,33 @@ public class AppResource {
/** Array resource containing the official command line arguments. */
public static int ARRAY_OFFICIAL_COMMAND_LINE;
+ /** Dimension defining the corner radii of the favicon color strip when creating shortcuts. */
+ public static int DIMENSION_FAVICON_COLORSTRIP_CORNER_RADII;
+
+ /** Dimension defining the height of the favicon color strip when creating shortcuts. */
+ public static int DIMENSION_FAVICON_COLORSTRIP_HEIGHT;
+
+ /** Dimension defining the padding of the favicon color strip when creating shortcuts. */
+ public static int DIMENSION_FAVICON_COLORSTRIP_PADDING;
+
+ /** Dimension defining the width of the favicon color strip when creating shortcuts. */
+ public static int DIMENSION_FAVICON_COLORSTRIP_WIDTH;
+
+ /** Dimension defining the border of the favicon fold when creating shortcuts. */
+ public static int DIMENSION_FAVICON_FOLD_BORDER;
+
+ /** Dimension defining the corner radii of the favicon fold when creating shortcuts. */
+ public static int DIMENSION_FAVICON_FOLD_CORNER_RADII;
+
+ /** Dimension defining the shadow of the favicon fold when creating shortcuts. */
+ public static int DIMENSION_FAVICON_FOLD_SHADOW;
+
+ /** Dimension defining the size of the favicon fold when creating shortcuts. */
+ public static int DIMENSION_FAVICON_FOLD_SIZE;
+
+ /** Dimension defining the size of the favicon image when creating shortcuts. */
+ public static int DIMENSION_FAVICON_SIZE;
+
/** Dimension of the radius used in the link preview overlay. */
public static int DIMENSION_LINK_PREVIEW_OVERLAY_RADIUS;
@@ -24,6 +51,12 @@ public class AppResource {
/** Drawable icon resource for the Web Search button in the action bar. */
public static int DRAWABLE_ICON_ACTION_BAR_WEB_SEARCH;
+ /** Drawable icon resource of the Application icon. */
+ public static int DRAWABLE_ICON_APP_ICON;
+
+ /** Drawable icon resource used for favicons by default. */
+ public static int DRAWABLE_ICON_DEFAULT_FAVICON;
+
/** Drawable resource for the link preview popup overlay. */
public static int DRAWABLE_LINK_PREVIEW_POPUP_OVERLAY;
@@ -72,6 +105,9 @@ public class AppResource {
/** Layout of the month picker dialog. */
public static int LAYOUT_MONTH_PICKER_DIALOG;
+ /** Mipmap image used as background for bookmark shortcut icons. */
+ public static int MIPMAP_BOOKMARK_SHORTCUT_BACKGROUND;
+
/** String for the Share button in the action bar. */
public static int STRING_ACTION_BAR_SHARE;
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698