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

Unified Diff: chrome/browser/chromeos/ui/accessibility_cursor_ring_layer.h

Issue 1822823002: Implement Chrome OS accessibility features to highlight focus, caret & cursor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Landing without views_delegate change for now Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/ui/accessibility_cursor_ring_layer.h
diff --git a/chrome/browser/chromeos/ui/accessibility_cursor_ring_layer.h b/chrome/browser/chromeos/ui/accessibility_cursor_ring_layer.h
new file mode 100644
index 0000000000000000000000000000000000000000..499036080acdba195765064e4401a847d52fcf63
--- /dev/null
+++ b/chrome/browser/chromeos/ui/accessibility_cursor_ring_layer.h
@@ -0,0 +1,45 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_CHROMEOS_UI_ACCESSIBILITY_CURSOR_RING_LAYER_H_
+#define CHROME_BROWSER_CHROMEOS_UI_ACCESSIBILITY_CURSOR_RING_LAYER_H_
+
+#include "chrome/browser/chromeos/ui/accessibility_focus_ring.h"
+#include "chrome/browser/chromeos/ui/focus_ring_layer.h"
+
+namespace chromeos {
+
+// A subclass of FocusRingLayer that highlights the mouse cursor while it's
+// moving, to make it easier to find visually.
+class AccessibilityCursorRingLayer : public FocusRingLayer {
+ public:
+ AccessibilityCursorRingLayer(FocusRingLayerDelegate* delegate,
+ int red,
+ int green,
+ int blue);
+ ~AccessibilityCursorRingLayer() override;
+
+ // Create the layer and update its bounds and position in the hierarchy.
+ void Set(const gfx::Point& location);
+
+ // Set the layer's opacity.
+ void SetOpacity(float opacity);
+
+ private:
+ // ui::LayerDelegate overrides:
+ void OnPaintLayer(const ui::PaintContext& context) override;
+
+ // The current location.
+ gfx::Point location_;
+
+ int red_;
+ int green_;
+ int blue_;
+
+ DISALLOW_COPY_AND_ASSIGN(AccessibilityCursorRingLayer);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_UI_ACCESSIBILITY_CURSOR_RING_LAYER_H_

Powered by Google App Engine
This is Rietveld 408576698