| OLD | NEW |
| 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 #include "content/browser/devtools/protocol/color_picker.h" | 5 #include "content/browser/devtools/protocol/color_picker.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "content/browser/renderer_host/render_view_host_impl.h" | 9 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 10 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 10 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 UpdateCursor(); | 108 UpdateCursor(); |
| 109 } | 109 } |
| 110 } | 110 } |
| 111 | 111 |
| 112 bool ColorPicker::HandleMouseEvent(const blink::WebMouseEvent& event) { | 112 bool ColorPicker::HandleMouseEvent(const blink::WebMouseEvent& event) { |
| 113 last_cursor_x_ = event.x; | 113 last_cursor_x_ = event.x; |
| 114 last_cursor_y_ = event.y; | 114 last_cursor_y_ = event.y; |
| 115 if (frame_.drawsNothing()) | 115 if (frame_.drawsNothing()) |
| 116 return true; | 116 return true; |
| 117 | 117 |
| 118 if (event.button == blink::WebMouseEvent::ButtonLeft && | 118 if (event.button == blink::WebMouseEvent::Button::Left && |
| 119 event.type == blink::WebInputEvent::MouseDown) { | 119 event.type == blink::WebInputEvent::MouseDown) { |
| 120 if (last_cursor_x_ < 0 || last_cursor_x_ >= frame_.width() || | 120 if (last_cursor_x_ < 0 || last_cursor_x_ >= frame_.width() || |
| 121 last_cursor_y_ < 0 || last_cursor_y_ >= frame_.height()) { | 121 last_cursor_y_ < 0 || last_cursor_y_ >= frame_.height()) { |
| 122 return true; | 122 return true; |
| 123 } | 123 } |
| 124 | 124 |
| 125 SkAutoLockPixels lock_image(frame_); | 125 SkAutoLockPixels lock_image(frame_); |
| 126 SkColor sk_color = frame_.getColor(last_cursor_x_, last_cursor_y_); | 126 SkColor sk_color = frame_.getColor(last_cursor_x_, last_cursor_y_); |
| 127 callback_.Run(SkColorGetR(sk_color), SkColorGetG(sk_color), | 127 callback_.Run(SkColorGetR(sk_color), SkColorGetG(sk_color), |
| 128 SkColorGetB(sk_color), SkColorGetA(sk_color)); | 128 SkColorGetB(sk_color), SkColorGetA(sk_color)); |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 kHotspotOffset * device_scale_factor); | 255 kHotspotOffset * device_scale_factor); |
| 256 | 256 |
| 257 cursor.InitFromCursorInfo(cursor_info); | 257 cursor.InitFromCursorInfo(cursor_info); |
| 258 DCHECK(host_); | 258 DCHECK(host_); |
| 259 host_->SetCursor(cursor); | 259 host_->SetCursor(cursor); |
| 260 } | 260 } |
| 261 | 261 |
| 262 } // namespace page | 262 } // namespace page |
| 263 } // namespace devtools | 263 } // namespace devtools |
| 264 } // namespace content | 264 } // namespace content |
| OLD | NEW |