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

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

Issue 829913004: WIP: Plumbing through text selection granularity control support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@unified_text_selection_diff
Patch Set: Missing file. Created 5 years, 11 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 | « content/browser/DEPS ('k') | 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 <vector> 8 #include <vector>
9 9
10 #include "base/android/jni_android.h" 10 #include "base/android/jni_android.h"
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 // -------------------------------------------------------------------------- 267 // --------------------------------------------------------------------------
268 268
269 gfx::Size GetPhysicalBackingSize() const; 269 gfx::Size GetPhysicalBackingSize() const;
270 gfx::Size GetViewportSizeDip() const; 270 gfx::Size GetViewportSizeDip() const;
271 bool DoTopControlsShrinkBlinkSize() const; 271 bool DoTopControlsShrinkBlinkSize() const;
272 float GetTopControlsHeightDip() const; 272 float GetTopControlsHeightDip() const;
273 273
274 void AttachLayer(scoped_refptr<cc::Layer> layer); 274 void AttachLayer(scoped_refptr<cc::Layer> layer);
275 void RemoveLayer(scoped_refptr<cc::Layer> layer); 275 void RemoveLayer(scoped_refptr<cc::Layer> layer);
276 276
277 void MoveRangeSelectionExtent(const gfx::PointF& extent); 277 void MoveRangeSelectionExtent(const gfx::PointF& extent,
278 ui::TextSelectionGranularity granularity);
278 279
279 void SelectBetweenCoordinates(const gfx::PointF& base, 280 void SelectBetweenCoordinates(const gfx::PointF& base,
280 const gfx::PointF& extent); 281 const gfx::PointF& extent);
281 282
282 private: 283 private:
283 class ContentViewUserData; 284 class ContentViewUserData;
284 285
285 friend class ContentViewUserData; 286 friend class ContentViewUserData;
286 virtual ~ContentViewCoreImpl(); 287 virtual ~ContentViewCoreImpl();
287 288
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_; 346 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_;
346 347
347 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); 348 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl);
348 }; 349 };
349 350
350 bool RegisterContentViewCore(JNIEnv* env); 351 bool RegisterContentViewCore(JNIEnv* env);
351 352
352 } // namespace content 353 } // namespace content
353 354
354 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ 355 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/DEPS ('k') | content/browser/android/content_view_core_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698