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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/contextmenu/EmptyChromeContextMenuItemDelegate.java

Issue 396063009: Context Menu "Open image" doesn't make sense in a Image URL Tab (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated comment as suggested Created 6 years, 5 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 unified diff | Download patch
« no previous file with comments | « chrome/android/java/src/org/chromium/chrome/browser/contextmenu/ChromeContextMenuPopulator.java ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.chrome.browser.contextmenu; 5 package org.chromium.chrome.browser.contextmenu;
6 6
7 import org.chromium.content_public.Referrer; 7 import org.chromium.content_public.Referrer;
8 8
9 /** 9 /**
10 * An empty implementation of {@link ChromeContextMenuItemDelegate} to make over riding subsets of 10 * An empty implementation of {@link ChromeContextMenuItemDelegate} to make over riding subsets of
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 public void onSaveToClipboard(String text, boolean isUrl) { 51 public void onSaveToClipboard(String text, boolean isUrl) {
52 } 52 }
53 53
54 @Override 54 @Override
55 public void onSaveImageToClipboard(String url) { 55 public void onSaveImageToClipboard(String url) {
56 } 56 }
57 57
58 @Override 58 @Override
59 public void onSearchByImageInNewTab() { 59 public void onSearchByImageInNewTab() {
60 } 60 }
61
62 @Override
63 public String getPageUrl() {
64 return "";
65 }
61 } 66 }
OLDNEW
« no previous file with comments | « chrome/android/java/src/org/chromium/chrome/browser/contextmenu/ChromeContextMenuPopulator.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698