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

Unified Diff: chrome/android/java_staging/src/org/chromium/chrome/browser/toolbar/HomePageButton.java

Issue 1206673003: Merge java_staging/src into java/src. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 6 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: chrome/android/java_staging/src/org/chromium/chrome/browser/toolbar/HomePageButton.java
diff --git a/chrome/android/java_staging/src/org/chromium/chrome/browser/toolbar/HomePageButton.java b/chrome/android/java_staging/src/org/chromium/chrome/browser/toolbar/HomePageButton.java
deleted file mode 100644
index da8bc65347de3b21f0dd90a9c431652c01ee95a0..0000000000000000000000000000000000000000
--- a/chrome/android/java_staging/src/org/chromium/chrome/browser/toolbar/HomePageButton.java
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// 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.toolbar;
-
-import android.content.Context;
-import android.util.AttributeSet;
-import android.view.ContextMenu;
-import android.view.ContextMenu.ContextMenuInfo;
-import android.view.Menu;
-import android.view.MenuItem;
-import android.view.View;
-import android.view.View.OnCreateContextMenuListener;
-
-import org.chromium.chrome.R;
-import org.chromium.chrome.browser.partnercustomizations.HomepageManager;
-import org.chromium.chrome.browser.widget.TintedImageButton;
-
-/**
- * View that displays the home page button.
- */
-public class HomePageButton extends TintedImageButton
- implements OnCreateContextMenuListener, MenuItem.OnMenuItemClickListener {
-
- private static final int ID_REMOVE = 0;
-
- /** Constructor inflating from XML. */
- public HomePageButton(Context context, AttributeSet attrs) {
- super(context, attrs);
- setOnCreateContextMenuListener(this);
- }
-
- @Override
- public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
- menu.add(Menu.NONE, ID_REMOVE, Menu.NONE, R.string.remove)
- .setOnMenuItemClickListener(this);
- }
-
- @Override
- public boolean onMenuItemClick(MenuItem item) {
- assert item.getItemId() == ID_REMOVE;
- HomepageManager.getInstance(getContext()).setPrefHomepageEnabled(false);
- return true;
- }
-}

Powered by Google App Engine
This is Rietveld 408576698