summaryrefslogtreecommitdiff
path: root/chromium/content/public/browser/eye_dropper.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/public/browser/eye_dropper.h')
-rw-r--r--chromium/content/public/browser/eye_dropper.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/chromium/content/public/browser/eye_dropper.h b/chromium/content/public/browser/eye_dropper.h
new file mode 100644
index 00000000000..e84ed07be48
--- /dev/null
+++ b/chromium/content/public/browser/eye_dropper.h
@@ -0,0 +1,18 @@
+// Copyright 2020 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 CONTENT_PUBLIC_BROWSER_EYE_DROPPER_H_
+#define CONTENT_PUBLIC_BROWSER_EYE_DROPPER_H_
+
+namespace content {
+
+// Interface for an eye dropper window.
+class EyeDropper {
+ public:
+ virtual ~EyeDropper() = default;
+};
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_EYE_DROPPER_H_