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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/ntp/LogoBridge.java

Issue 2114963002: Create Java infrastructure for UI Render Tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Throw when mkdir fails. Created 4 years, 4 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 | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ntp/cards/NewTabPageAdapter.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/src/org/chromium/chrome/browser/ntp/LogoBridge.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ntp/LogoBridge.java b/chrome/android/java/src/org/chromium/chrome/browser/ntp/LogoBridge.java
index 51c0f1fc7bbd21b290bfff4e92428ed40e5d4b10..ef79a9140beb69e3095715ad724eb0babc65d8e8 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/ntp/LogoBridge.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/ntp/LogoBridge.java
@@ -14,12 +14,12 @@ import jp.tomorrowkey.android.gifplayer.BaseGifImage;
/**
* Provides access to the search provider's logo via the C++ LogoService.
*/
-class LogoBridge {
+public class LogoBridge {
/**
* A logo for a search provider (e.g. the Yahoo! logo or Google doodle).
*/
- static class Logo {
+ public static class Logo {
/**
* The logo image. Non-null.
*/
@@ -51,7 +51,7 @@ class LogoBridge {
/**
* Observer for receiving the logo when it's available.
*/
- interface LogoObserver {
+ public interface LogoObserver {
/**
* Called when the cached or fresh logo is available. This may be called up to two times,
* once with the cached logo and once with a freshly downloaded logo.
@@ -66,7 +66,7 @@ class LogoBridge {
/**
* A callback that is called when the animated logo is successfully downloaded.
*/
- interface AnimatedLogoCallback {
+ public interface AnimatedLogoCallback {
/**
* Called when the animated GIF logo is successfully downloaded.
@@ -84,7 +84,7 @@ class LogoBridge {
*
* @param profile Profile of the tab that will show the logo.
*/
- LogoBridge(Profile profile) {
+ public LogoBridge(Profile profile) {
mNativeLogoBridge = nativeInit(profile);
}
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ntp/cards/NewTabPageAdapter.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698