Chromium Code Reviews| Index: third_party/WebKit/Source/modules/shapedetection/DetectedObject.h |
| diff --git a/third_party/WebKit/Source/modules/shapedetection/DetectedObject.h b/third_party/WebKit/Source/modules/shapedetection/DetectedObject.h |
| index b445193efd8cd4730858d429d2f08019390fa5f9..6853db73b68936cd3ee35d8b0ac4811bd738f192 100644 |
| --- a/third_party/WebKit/Source/modules/shapedetection/DetectedObject.h |
| +++ b/third_party/WebKit/Source/modules/shapedetection/DetectedObject.h |
| @@ -1,28 +1,3 @@ |
| // 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. |
|
mcasas
2016/10/03 22:18:09
This file should be deleted, right?
xianglu
2016/10/04 00:58:26
Done.
|
| - |
| -#ifndef DetectedObject_h |
| -#define DetectedObject_h |
| - |
| -#include "bindings/core/v8/ScriptWrappable.h" |
| -#include "core/dom/DOMRect.h" |
| -#include "modules/ModulesExport.h" |
| - |
| -namespace blink { |
| - |
| -class MODULES_EXPORT DetectedObject : public GarbageCollected<DetectedObject>, |
| - public ScriptWrappable { |
| - DEFINE_WRAPPERTYPEINFO(); |
| - |
| - public: |
| - DOMRect* boundingBox() const { return m_boundingBox.get(); } |
| - DEFINE_INLINE_TRACE() { visitor->trace(m_boundingBox); } |
| - |
| - private: |
| - Member<DOMRect> m_boundingBox; |
| -}; |
| - |
| -} // namespace blink |
| - |
| -#endif // DetectedObject_h |