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

Unified Diff: ui/android/java/src/org/chromium/ui/resources/ResourceFactory.java

Issue 2752693003: chrome/android: Update toolbar drawing in native. (Closed)
Patch Set: .. Created 3 years, 9 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
Index: ui/android/java/src/org/chromium/ui/resources/ResourceFactory.java
diff --git a/ui/android/java/src/org/chromium/ui/resources/ResourceFactory.java b/ui/android/java/src/org/chromium/ui/resources/ResourceFactory.java
index eb5f1be1d2dd7c3571b8ad785cae28b465c47058..a4032d242f4b6009c0af171d1ece2dcaf6422873 100644
--- a/ui/android/java/src/org/chromium/ui/resources/ResourceFactory.java
+++ b/ui/android/java/src/org/chromium/ui/resources/ResourceFactory.java
@@ -20,8 +20,7 @@ public class ResourceFactory {
ninePatchData.getAperture());
}
- // Make this private in https://codereview.chromium.org/2752693003/
- public static long createNinePatchBitmapResource(Rect padding, Rect aperture) {
+ private static long createNinePatchBitmapResource(Rect padding, Rect aperture) {
return nativeCreateNinePatchBitmapResource(padding.left, padding.top, padding.right,
padding.bottom, aperture.left, aperture.top, aperture.right, aperture.bottom);
}

Powered by Google App Engine
This is Rietveld 408576698