Chromium Code Reviews| Index: Source/core/inspector/LayoutWYSIWYGEditor.h |
| diff --git a/Source/core/inspector/LayoutWYSIWYGEditor.h b/Source/core/inspector/LayoutWYSIWYGEditor.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..abba0213148c10f3d9b8984c454f349a230117bf |
| --- /dev/null |
| +++ b/Source/core/inspector/LayoutWYSIWYGEditor.h |
| @@ -0,0 +1,26 @@ |
| +// Copyright 2015 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 LayoutWYSIWYGEditor_h |
| +#define LayoutWYSIWYGEditor_h |
| + |
| +#include "wtf/RefPtr.h" |
| + |
| +namespace blink { |
| + |
| +class JSONObject; |
| +class Node; |
| + |
| +class LayoutWYSIWIGEditor final { |
|
dgozman
2015/06/23 14:00:30
Let's add create method.
sergeyv
2015/06/23 16:36:52
Done.
|
| +public: |
| + LayoutWYSIWIGEditor(Node*); |
|
dgozman
2015/06/23 14:00:30
explicit
sergeyv
2015/06/23 16:36:52
Done.
|
| + PassRefPtr<JSONObject> buildJSONInfo() const; |
| +private: |
| + RefPtr<Node> m_node; |
| +}; |
| + |
| +} // namespace blink |
| + |
| + |
| +#endif // !defined(LayoutWYSIWYGEditor_h) |