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

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

Issue 1917053003: unique_ptr_migration: clean up references to scoped_ptr as of r389721 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 8 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_POPUP_TOUCH_HANDLE_DRAWABLE_H_ 5 #ifndef CONTENT_BROWSER_ANDROID_POPUP_TOUCH_HANDLE_DRAWABLE_H_
6 #define CONTENT_BROWSER_ANDROID_POPUP_TOUCH_HANDLE_DRAWABLE_H_ 6 #define CONTENT_BROWSER_ANDROID_POPUP_TOUCH_HANDLE_DRAWABLE_H_
7 7
8 #include "ui/touch_selection/touch_handle.h" 8 #include "ui/touch_selection/touch_handle.h"
9 9
10 #include <memory>
11
10 #include "base/android/jni_android.h" 12 #include "base/android/jni_android.h"
11 #include "base/android/jni_weak_ref.h" 13 #include "base/android/jni_weak_ref.h"
12 #include "base/macros.h" 14 #include "base/macros.h"
13 #include "base/memory/scoped_ptr.h"
14 15
15 namespace content { 16 namespace content {
16 17
17 class ContentViewCore; 18 class ContentViewCore;
18 19
19 // Touch handle drawable backed by an Android PopupWindow. 20 // Touch handle drawable backed by an Android PopupWindow.
20 class PopupTouchHandleDrawable : public ui::TouchHandleDrawable { 21 class PopupTouchHandleDrawable : public ui::TouchHandleDrawable {
21 public: 22 public:
22 static std::unique_ptr<PopupTouchHandleDrawable> Create( 23 static std::unique_ptr<PopupTouchHandleDrawable> Create(
23 ContentViewCore* content_view_core); 24 ContentViewCore* content_view_core);
(...skipping 18 matching lines...) Expand all
42 43
43 const float dpi_scale_; 44 const float dpi_scale_;
44 float drawable_horizontal_padding_ratio_; 45 float drawable_horizontal_padding_ratio_;
45 46
46 DISALLOW_COPY_AND_ASSIGN(PopupTouchHandleDrawable); 47 DISALLOW_COPY_AND_ASSIGN(PopupTouchHandleDrawable);
47 }; 48 };
48 49
49 } // namespace content 50 } // namespace content
50 51
51 #endif // CONTENT_BROWSER_ANDROID_POPUP_TOUCH_HANDLE_DRAWABLE_H_ 52 #endif // CONTENT_BROWSER_ANDROID_POPUP_TOUCH_HANDLE_DRAWABLE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698