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

Side by Side Diff: third_party/WebKit/Source/core/dom/SynchronousMutationObserver.cpp

Issue 2641803003: Introduce SynchronousMutationObserver::didChangeAttribute() (Closed)
Patch Set: 2017-01-20T14:34:58 Created 3 years, 11 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 | « third_party/WebKit/Source/core/dom/SynchronousMutationObserver.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/dom/SynchronousMutationObserver.h" 5 #include "core/dom/SynchronousMutationObserver.h"
6 6
7 #include "core/dom/Document.h" 7 #include "core/dom/Document.h"
8 #include "core/dom/SynchronousMutationNotifier.h" 8 #include "core/dom/SynchronousMutationNotifier.h"
9 9
10 namespace blink { 10 namespace blink {
11 11
12 SynchronousMutationObserver::SynchronousMutationObserver() 12 SynchronousMutationObserver::SynchronousMutationObserver()
13 : LifecycleObserver(nullptr) {} 13 : LifecycleObserver(nullptr) {}
14 14
15 void SynchronousMutationObserver::didChangeAttribute(const Element&) {}
15 void SynchronousMutationObserver::didChangeChildren(const ContainerNode&) {} 16 void SynchronousMutationObserver::didChangeChildren(const ContainerNode&) {}
16 void SynchronousMutationObserver::didMergeTextNodes(const Text&, 17 void SynchronousMutationObserver::didMergeTextNodes(const Text&,
17 const NodeWithIndex&, 18 const NodeWithIndex&,
18 unsigned) {} 19 unsigned) {}
19 void SynchronousMutationObserver::didMoveTreeToNewDocument(const Node&) {} 20 void SynchronousMutationObserver::didMoveTreeToNewDocument(const Node&) {}
20 void SynchronousMutationObserver::didSplitTextNode(const Text&) {} 21 void SynchronousMutationObserver::didSplitTextNode(const Text&) {}
21 void SynchronousMutationObserver::didUpdateCharacterData(CharacterData*, 22 void SynchronousMutationObserver::didUpdateCharacterData(CharacterData*,
22 unsigned, 23 unsigned,
23 unsigned, 24 unsigned,
24 unsigned) {} 25 unsigned) {}
25 void SynchronousMutationObserver::nodeChildrenWillBeRemoved(ContainerNode&) {} 26 void SynchronousMutationObserver::nodeChildrenWillBeRemoved(ContainerNode&) {}
26 void SynchronousMutationObserver::nodeWillBeRemoved(Node&) {} 27 void SynchronousMutationObserver::nodeWillBeRemoved(Node&) {}
27 28
28 } // namespace blink 29 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/SynchronousMutationObserver.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698