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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef LayoutWYSIWYGEditor_h
6 #define LayoutWYSIWYGEditor_h
7
8 #include "wtf/RefPtr.h"
9
10 namespace blink {
11
12 class JSONObject;
13 class Node;
14
15 class LayoutWYSIWIGEditor final {
dgozman 2015/06/23 14:00:30 Let's add create method.
sergeyv 2015/06/23 16:36:52 Done.
16 public:
17 LayoutWYSIWIGEditor(Node*);
dgozman 2015/06/23 14:00:30 explicit
sergeyv 2015/06/23 16:36:52 Done.
18 PassRefPtr<JSONObject> buildJSONInfo() const;
19 private:
20 RefPtr<Node> m_node;
21 };
22
23 } // namespace blink
24
25
26 #endif // !defined(LayoutWYSIWYGEditor_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698