| Index: chrome/android/java/src/org/chromium/chrome/browser/ntp/LogoBridge.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/LogoBridge.java b/chrome/android/java/src/org/chromium/chrome/browser/ntp/LogoBridge.java
|
| similarity index 93%
|
| rename from chrome/android/java/src/org/chromium/chrome/browser/LogoBridge.java
|
| rename to chrome/android/java/src/org/chromium/chrome/browser/ntp/LogoBridge.java
|
| index becdeaa0cb5d80a072e9fe13c59b06ee61686328..a34de03a24052b3c9cab07cb857afcef6869d36f 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/LogoBridge.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/ntp/LogoBridge.java
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -package org.chromium.chrome.browser;
|
| +package org.chromium.chrome.browser.ntp;
|
|
|
| import android.graphics.Bitmap;
|
|
|
| @@ -12,7 +12,7 @@ import org.chromium.chrome.browser.profiles.Profile;
|
| /**
|
| * Provides access to the search provider's logo via the C++ LogoService.
|
| */
|
| -public class LogoBridge {
|
| +class LogoBridge {
|
|
|
| /**
|
| * A logo for a search provider (e.g. the Yahoo! logo or Google doodle).
|
| @@ -62,7 +62,7 @@ public class LogoBridge {
|
| *
|
| * @param profile Profile of the tab that will show the logo.
|
| */
|
| - public LogoBridge(Profile profile) {
|
| + LogoBridge(Profile profile) {
|
| mNativeLogoBridge = nativeInit(profile);
|
| }
|
|
|
| @@ -70,7 +70,7 @@ public class LogoBridge {
|
| * Cleans up the C++ side of this class. After calling this, LogoObservers passed to
|
| * getCurrentLogo() will no longer receive updates.
|
| */
|
| - public void destroy() {
|
| + void destroy() {
|
| assert mNativeLogoBridge != 0;
|
| nativeDestroy(mNativeLogoBridge);
|
| mNativeLogoBridge = 0;
|
| @@ -83,7 +83,7 @@ public class LogoBridge {
|
| * available. logoObserver.onLogoAvailable() may be called synchronously if
|
| * the cached logo is already available.
|
| */
|
| - public void getCurrentLogo(LogoObserver logoObserver) {
|
| + void getCurrentLogo(LogoObserver logoObserver) {
|
| nativeGetCurrentLogo(mNativeLogoBridge, logoObserver);
|
| }
|
|
|
|
|