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

Side by Side Diff: content/browser/devtools/protocol/color_picker.h

Issue 2817593004: [DevTools] Move eye dropper functionality from protocol to embedder (Closed)
Patch Set: rebased Created 3 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
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/devtools/protocol/color_picker.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_DEVTOOLS_PROTOCOL_COLOR_PICKER_H_
6 #define CONTENT_BROWSER_DEVTOOLS_PROTOCOL_COLOR_PICKER_H_
7
8 #include "base/callback.h"
9 #include "base/macros.h"
10 #include "content/public/browser/readback_types.h"
11 #include "content/public/browser/render_widget_host.h"
12 #include "third_party/skia/include/core/SkBitmap.h"
13
14 namespace blink {
15 class WebMouseEvent;
16 }
17
18 namespace content {
19
20 class RenderWidgetHostImpl;
21
22 namespace protocol {
23
24 class ColorPicker {
25 public:
26 typedef base::Callback<void(int, int, int, int)> ColorPickedCallback;
27
28 explicit ColorPicker(ColorPickedCallback callback);
29 virtual ~ColorPicker();
30
31 void SetRenderWidgetHost(RenderWidgetHostImpl* host);
32 void SetEnabled(bool enabled);
33 void OnSwapCompositorFrame();
34
35 private:
36 void UpdateFrame();
37 void ResetFrame();
38 void FrameUpdated(const SkBitmap&, ReadbackResponse);
39 bool HandleMouseEvent(const blink::WebMouseEvent& event);
40 void UpdateCursor();
41
42 ColorPickedCallback callback_;
43 bool enabled_;
44 SkBitmap frame_;
45 int last_cursor_x_;
46 int last_cursor_y_;
47 RenderWidgetHost::MouseEventCallback mouse_event_callback_;
48 RenderWidgetHostImpl* host_;
49 base::WeakPtrFactory<ColorPicker> weak_factory_;
50
51 DISALLOW_COPY_AND_ASSIGN(ColorPicker);
52 };
53
54 } // namespace protocol
55 } // namespace content
56
57 #endif // CONTENT_BROWSER_DEVTOOLS_PROTOCOL_COLOR_PICKER_H_
OLDNEW
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/devtools/protocol/color_picker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698