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

Side by Side Diff: content/browser/android/content_view_core_impl.h

Issue 2360013002: Remove unused version of SelectBetweenCoordinates() (Closed)
Patch Set: Created 4 years, 2 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 | « no previous file | content/browser/android/content_view_core_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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 #ifndef CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ 5 #ifndef CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_
6 #define CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ 6 #define CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 jfloat y); 193 jfloat y);
194 void PinchEnd(JNIEnv* env, 194 void PinchEnd(JNIEnv* env,
195 const base::android::JavaParamRef<jobject>& obj, 195 const base::android::JavaParamRef<jobject>& obj,
196 jlong time_ms); 196 jlong time_ms);
197 void PinchBy(JNIEnv* env, 197 void PinchBy(JNIEnv* env,
198 const base::android::JavaParamRef<jobject>& obj, 198 const base::android::JavaParamRef<jobject>& obj,
199 jlong time_ms, 199 jlong time_ms,
200 jfloat x, 200 jfloat x,
201 jfloat y, 201 jfloat y,
202 jfloat delta); 202 jfloat delta);
203 void SelectBetweenCoordinates(JNIEnv* env,
204 const base::android::JavaParamRef<jobject>& obj,
205 jfloat x1,
206 jfloat y1,
207 jfloat x2,
208 jfloat y2);
209 void DismissTextHandles(JNIEnv* env, 203 void DismissTextHandles(JNIEnv* env,
210 const base::android::JavaParamRef<jobject>& obj); 204 const base::android::JavaParamRef<jobject>& obj);
211 void SetTextHandlesTemporarilyHidden( 205 void SetTextHandlesTemporarilyHidden(
212 JNIEnv* env, 206 JNIEnv* env,
213 const base::android::JavaParamRef<jobject>& obj, 207 const base::android::JavaParamRef<jobject>& obj,
214 jboolean hidden); 208 jboolean hidden);
215 209
216 void ResetGestureDetection(JNIEnv* env, 210 void ResetGestureDetection(JNIEnv* env,
217 const base::android::JavaParamRef<jobject>& obj); 211 const base::android::JavaParamRef<jobject>& obj);
218 void SetDoubleTapSupportEnabled( 212 void SetDoubleTapSupportEnabled(
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_; 470 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_;
477 471
478 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); 472 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl);
479 }; 473 };
480 474
481 bool RegisterContentViewCore(JNIEnv* env); 475 bool RegisterContentViewCore(JNIEnv* env);
482 476
483 } // namespace content 477 } // namespace content
484 478
485 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ 479 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/android/content_view_core_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698