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

Side by Side Diff: content/browser/renderer_host/input/touch_selection_controller_client_aura.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_RENDERER_HOST_INPUT_TOUCH_SELECTION_CONTROLLER_CLIENT_AU RA_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_TOUCH_SELECTION_CONTROLLER_CLIENT_AU RA_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_TOUCH_SELECTION_CONTROLLER_CLIENT_AU RA_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_TOUCH_SELECTION_CONTROLLER_CLIENT_AU RA_H_
7 7
8 #include <memory>
9
8 #include "base/macros.h" 10 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "base/timer/timer.h" 11 #include "base/timer/timer.h"
11 #include "content/common/content_export.h" 12 #include "content/common/content_export.h"
12 #include "ui/touch_selection/touch_selection_controller.h" 13 #include "ui/touch_selection/touch_selection_controller.h"
13 #include "ui/touch_selection/touch_selection_menu_runner.h" 14 #include "ui/touch_selection/touch_selection_menu_runner.h"
14 15
15 namespace content { 16 namespace content {
16 struct ContextMenuParams; 17 struct ContextMenuParams;
17 class RenderWidgetHostViewAura; 18 class RenderWidgetHostViewAura;
18 19
19 // An implementation of |TouchSelectionControllerClient| to be used in Aura's 20 // An implementation of |TouchSelectionControllerClient| to be used in Aura's
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 // A pre-target event handler for aura::Env which deactivates touch selection 85 // A pre-target event handler for aura::Env which deactivates touch selection
85 // on mouse and keyboard events. 86 // on mouse and keyboard events.
86 std::unique_ptr<EnvPreTargetHandler> env_pre_target_handler_; 87 std::unique_ptr<EnvPreTargetHandler> env_pre_target_handler_;
87 88
88 DISALLOW_COPY_AND_ASSIGN(TouchSelectionControllerClientAura); 89 DISALLOW_COPY_AND_ASSIGN(TouchSelectionControllerClientAura);
89 }; 90 };
90 91
91 } // namespace content 92 } // namespace content
92 93
93 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_TOUCH_SELECTION_CONTROLLER_CLIENT _AURA_H_ 94 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_TOUCH_SELECTION_CONTROLLER_CLIENT _AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698