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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXSlider.h

Issue 1996873002: AXObject is not copyable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more accessibility classes Created 4 years, 7 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: third_party/WebKit/Source/modules/accessibility/AXSlider.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXSlider.h b/third_party/WebKit/Source/modules/accessibility/AXSlider.h
index a055b30fe649a21f48d6687f9c816332fd48f6d1..080c25148d25652654e0b5ed349ab11484b120e9 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXSlider.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXSlider.h
@@ -38,6 +38,7 @@ class AXObjectCacheImpl;
class HTMLInputElement;
class AXSlider : public AXLayoutObject {
+ WTF_MAKE_NONCOPYABLE(AXSlider);
public:
static AXSlider* create(LayoutObject*, AXObjectCacheImpl&);
@@ -63,6 +64,7 @@ private:
};
class AXSliderThumb final : public AXMockObject {
+ WTF_MAKE_NONCOPYABLE(AXSliderThumb);
public:
static AXSliderThumb* create(AXObjectCacheImpl&);

Powered by Google App Engine
This is Rietveld 408576698