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

Unified Diff: content/browser/android/popup_touch_handle_drawable.h

Issue 2263043002: android_webview: Let AwContents manage TouchHandleDrawable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix build Created 4 years, 4 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/browser/android/popup_touch_handle_drawable.h
diff --git a/content/browser/android/popup_touch_handle_drawable.h b/content/browser/android/popup_touch_handle_drawable.h
deleted file mode 100644
index 82aa3db24052729c82405f44fc2ee5363f6382cf..0000000000000000000000000000000000000000
--- a/content/browser/android/popup_touch_handle_drawable.h
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright 2014 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.
-
-#ifndef CONTENT_BROWSER_ANDROID_POPUP_TOUCH_HANDLE_DRAWABLE_H_
-#define CONTENT_BROWSER_ANDROID_POPUP_TOUCH_HANDLE_DRAWABLE_H_
-
-#include "ui/touch_selection/touch_handle.h"
-
-#include <memory>
-
-#include "base/android/jni_android.h"
-#include "base/android/jni_weak_ref.h"
-#include "base/macros.h"
-
-namespace content {
-
-class ContentViewCore;
-
-// Touch handle drawable backed by an Android PopupWindow.
-class PopupTouchHandleDrawable : public ui::TouchHandleDrawable {
- public:
- static std::unique_ptr<PopupTouchHandleDrawable> Create(
- ContentViewCore* content_view_core,
- float dpi_scale);
- ~PopupTouchHandleDrawable() override;
-
- // ui::TouchHandleDrawable implementation.
- void SetEnabled(bool enabled) override;
- void SetOrientation(ui::TouchHandleOrientation orientation,
- bool mirror_vertical,
- bool mirror_horizontal) override;
- void SetOrigin(const gfx::PointF& origin) override;
- void SetAlpha(float alpha) override;
- gfx::RectF GetVisibleBounds() const override;
- float GetDrawableHorizontalPaddingRatio() const override;
-
- private:
- PopupTouchHandleDrawable(JNIEnv* env, jobject obj, float dpi_scale);
-
- JavaObjectWeakGlobalRef java_ref_;
-
- const float dpi_scale_;
- float drawable_horizontal_padding_ratio_;
-
- DISALLOW_COPY_AND_ASSIGN(PopupTouchHandleDrawable);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_ANDROID_POPUP_TOUCH_HANDLE_DRAWABLE_H_
« no previous file with comments | « android_webview/native/popup_touch_handle_drawable.cc ('k') | content/browser/android/popup_touch_handle_drawable.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698