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

Side by Side Diff: content/browser/renderer_host/input/synthetic_pen_driver.h

Issue 2633233002: Add the pointer type of pen to the synthetic WebMousEvent (Closed)
Patch Set: Make disallow copy private Created 3 years, 10 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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_PEN_DRIVER_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_PEN_DRIVER_H_
7
8 #include "base/macros.h"
9 #include "content/browser/renderer_host/input/synthetic_mouse_driver.h"
10 #include "content/common/content_export.h"
11
12 namespace content {
13
14 class CONTENT_EXPORT SyntheticPenDriver : public SyntheticMouseDriver {
15 public:
16 SyntheticPenDriver();
17 ~SyntheticPenDriver() override;
18
19 private:
20 DISALLOW_COPY_AND_ASSIGN(SyntheticPenDriver);
21 };
22
23 } // namespace content
24
25 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_PEN_DRIVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698