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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/input/SelectActionMode.java

Issue 2089933002: Context Menu Refactor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixing nits Created 4 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: content/public/android/java/src/org/chromium/content/browser/input/SelectActionMode.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/input/SelectActionMode.java b/content/public/android/java/src/org/chromium/content/browser/input/SelectActionMode.java
new file mode 100644
index 0000000000000000000000000000000000000000..17337b11e2139714f875ad46e88423f2ac8f9586
--- /dev/null
+++ b/content/public/android/java/src/org/chromium/content/browser/input/SelectActionMode.java
@@ -0,0 +1,38 @@
+// Copyright 2016 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.content.browser;
+
+import org.chromium.base.annotations.CalledByNative;
+
+/**
+ * This class is an implementation of Select Action Mode UI.
+ */
+class SelectActionMode {
+ private SelectActionMode(int left, int top, int right, int bottom,
+ boolean hasSelection, boolean isEditable, boolean isPassword) {
+ }
+
+ @CalledByNative
+ private static SelectActionMode create(int left, int top, int right,
+ int bottom, boolean hasSelection, boolean isEditable, boolean isPassword) {
+ return new SelectActionMode(left, top, right, bottom, hasSelection, isEditable, isPassword);
+ }
+
+ @CalledByNative
+ private void show() {
aelias_OOO_until_Jul13 2016/06/24 21:37:29 So I assume this patch only compiles but doesn't w
+ }
+
+ @CalledByNative
+ private void hide() {
+ }
+
+ @CalledByNative
+ private void close() {
+ }
+
+ @CalledByNative
+ private void move(int left, int top, int right, int bottom) {
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698