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

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

Issue 2407303005: Let embedder provide select action mode (Closed)
Patch Set: more comments addressed Created 4 years, 1 month 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
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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 jfloat y); 192 jfloat y);
193 void PinchEnd(JNIEnv* env, 193 void PinchEnd(JNIEnv* env,
194 const base::android::JavaParamRef<jobject>& obj, 194 const base::android::JavaParamRef<jobject>& obj,
195 jlong time_ms); 195 jlong time_ms);
196 void PinchBy(JNIEnv* env, 196 void PinchBy(JNIEnv* env,
197 const base::android::JavaParamRef<jobject>& obj, 197 const base::android::JavaParamRef<jobject>& obj,
198 jlong time_ms, 198 jlong time_ms,
199 jfloat x, 199 jfloat x,
200 jfloat y, 200 jfloat y,
201 jfloat delta); 201 jfloat delta);
202 void DismissTextHandles(JNIEnv* env,
203 const base::android::JavaParamRef<jobject>& obj);
204 void SetTextHandlesTemporarilyHidden( 202 void SetTextHandlesTemporarilyHidden(
205 JNIEnv* env, 203 JNIEnv* env,
206 const base::android::JavaParamRef<jobject>& obj, 204 const base::android::JavaParamRef<jobject>& obj,
207 jboolean hidden); 205 jboolean hidden);
208 206
209 void ResetGestureDetection(JNIEnv* env, 207 void ResetGestureDetection(JNIEnv* env,
210 const base::android::JavaParamRef<jobject>& obj); 208 const base::android::JavaParamRef<jobject>& obj);
211 void SetDoubleTapSupportEnabled( 209 void SetDoubleTapSupportEnabled(
212 JNIEnv* env, 210 JNIEnv* env,
213 const base::android::JavaParamRef<jobject>& obj, 211 const base::android::JavaParamRef<jobject>& obj,
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_; 465 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_;
468 466
469 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); 467 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl);
470 }; 468 };
471 469
472 bool RegisterContentViewCore(JNIEnv* env); 470 bool RegisterContentViewCore(JNIEnv* env);
473 471
474 } // namespace content 472 } // namespace content
475 473
476 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ 474 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698