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

Unified Diff: Source/core/inspector/LayoutWYSIWYGEditor.h

Issue 1204453002: Devtools: Create layout editor experiment (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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: 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)

Powered by Google App Engine
This is Rietveld 408576698