HomeSort by relevance Sort by last modified time
    Searched refs:AppBannerManager (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/chrome/browser/android/banners/
app_banner_manager.h 33 * 1) The AppBannerManager is alerted about the tag's contents, which should
35 * AppBannerManager.
37 * 2) The AppBannerManager's ServiceDelegate is asynchronously queried about the
40 * 3) At some point, the Java-side AppBannerManager is alerted of the completed
48 * AppBannerManager to (finally) create a AppBannerView, assuming that the
59 class AppBannerManager : public chrome::BitmapFetcherDelegate,
62 AppBannerManager(JNIEnv* env, jobject obj);
63 virtual ~AppBannerManager();
65 // Destroys the AppBannerManager.
99 // AppBannerManager on the Java side
    [all...]
app_banner_manager.cc 34 AppBannerManager::AppBannerManager(JNIEnv* env, jobject obj)
38 AppBannerManager::~AppBannerManager() {
41 void AppBannerManager::Destroy(JNIEnv* env, jobject obj) {
45 void AppBannerManager::BlockBanner(JNIEnv* env,
57 void AppBannerManager::ReplaceWebContents(JNIEnv* env,
65 void AppBannerManager::DidNavigateMainFrame(
76 void AppBannerManager::OnFetchComplete(const GURL url, const SkBitmap* bitmap) {
100 void AppBannerManager::HandleMetaTagContent(const std::string& tag_content
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/banners/
AppBannerManager.java 24 * The AppBannerManager manages a single AppBannerView, dismissing it when the user navigates to a
27 * removal of banners, among other things) is done by the native-side AppBannerManager.
33 public class AppBannerManager implements AppBannerView.Observer, AppDetailsDelegate.Observer {
34 private static final String TAG = "AppBannerManager";
39 /** Pointer to the native side AppBannerManager. */
42 /** Tab that the AppBannerView/AppBannerManager is owned by. */
45 /** ContentViewCore that the AppBannerView/AppBannerManager is currently attached to. */
72 * Constructs an AppBannerManager for the given tab.
73 * @param tab Tab that the AppBannerManager will be attached to.
75 public AppBannerManager(Tab tab)
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
Tab.java 18 import org.chromium.chrome.browser.banners.AppBannerManager;
107 private AppBannerManager mAppBannerManager;
845 if (AppBannerManager.isEnabled() && mAppBannerManager == null) {
846 mAppBannerManager = new AppBannerManager(this);
    [all...]

Completed in 101 milliseconds