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

Side by Side Diff: Source/core/inspector/DOMEditor.cpp

Issue 1295073002: Move serializer related files in core/editing/ related files into core/editing/serializers/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-08-17T15:24:31 Rebase for Source/web/WebPageSerializerImpl.cpp Created 5 years, 4 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
« no previous file with comments | « Source/core/html/HTMLElement.cpp ('k') | Source/core/inspector/InspectorDOMAgent.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 19 matching lines...) Expand all
30 30
31 #include "config.h" 31 #include "config.h"
32 #include "core/inspector/DOMEditor.h" 32 #include "core/inspector/DOMEditor.h"
33 33
34 #include "bindings/core/v8/ExceptionState.h" 34 #include "bindings/core/v8/ExceptionState.h"
35 #include "bindings/core/v8/ExceptionStatePlaceholder.h" 35 #include "bindings/core/v8/ExceptionStatePlaceholder.h"
36 #include "core/dom/DOMException.h" 36 #include "core/dom/DOMException.h"
37 #include "core/dom/Element.h" 37 #include "core/dom/Element.h"
38 #include "core/dom/Node.h" 38 #include "core/dom/Node.h"
39 #include "core/dom/Text.h" 39 #include "core/dom/Text.h"
40 #include "core/editing/Serialization.h" 40 #include "core/editing/serializers/Serialization.h"
41 #include "core/inspector/DOMPatchSupport.h" 41 #include "core/inspector/DOMPatchSupport.h"
42 #include "core/inspector/InspectorHistory.h" 42 #include "core/inspector/InspectorHistory.h"
43 #include "wtf/RefPtr.h" 43 #include "wtf/RefPtr.h"
44 44
45 namespace blink { 45 namespace blink {
46 46
47 class DOMEditor::RemoveChildAction final : public InspectorHistory::Action { 47 class DOMEditor::RemoveChildAction final : public InspectorHistory::Action {
48 WTF_MAKE_NONCOPYABLE(RemoveChildAction); 48 WTF_MAKE_NONCOPYABLE(RemoveChildAction);
49 public: 49 public:
50 RemoveChildAction(ContainerNode* parentNode, Node* node) 50 RemoveChildAction(ContainerNode* parentNode, Node* node)
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 return result; 512 return result;
513 } 513 }
514 514
515 DEFINE_TRACE(DOMEditor) 515 DEFINE_TRACE(DOMEditor)
516 { 516 {
517 visitor->trace(m_history); 517 visitor->trace(m_history);
518 } 518 }
519 519
520 } // namespace blink 520 } // namespace blink
521 521
OLDNEW
« no previous file with comments | « Source/core/html/HTMLElement.cpp ('k') | Source/core/inspector/InspectorDOMAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698