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

Unified Diff: third_party/WebKit/Source/modules/shapedetection/Detector.h

Issue 2369693002: Shapedetection module: Blink side implementation (Closed)
Patch Set: mcasas@ comments Created 4 years, 2 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/shapedetection/Detector.h
diff --git a/third_party/WebKit/Source/modules/shapedetection/Detector.h b/third_party/WebKit/Source/modules/shapedetection/Detector.h
deleted file mode 100644
index cb34daff323da7bb75381d842767d6bec758921f..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/modules/shapedetection/Detector.h
+++ /dev/null
@@ -1,29 +0,0 @@
-// 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 Detector_h
-#define Detector_h
-
-#include "bindings/core/v8/ScriptPromise.h"
-#include "bindings/core/v8/ScriptWrappable.h"
-#include "modules/ModulesExport.h"
-
-namespace blink {
-
-class DetectedObject;
-class HTMLImageElement;
-
-class MODULES_EXPORT Detector : public GarbageCollected<Detector>,
- public ScriptWrappable {
- DEFINE_WRAPPERTYPEINFO();
-
- public:
- static Detector* create();
- virtual ScriptPromise detect(ScriptState*, const HTMLImageElement*) = 0;
- DEFINE_INLINE_VIRTUAL_TRACE() {}
-};
-
-} // namespace blink
-
-#endif // Detector_h

Powered by Google App Engine
This is Rietveld 408576698