OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/IncrementLoadEventDelayCount.h" | 5 #include "core/dom/IncrementLoadEventDelayCount.h" |
6 | 6 |
| 7 #include <memory> |
7 #include "core/dom/Document.h" | 8 #include "core/dom/Document.h" |
8 #include "wtf/PtrUtil.h" | 9 #include "wtf/PtrUtil.h" |
9 #include <memory> | |
10 | 10 |
11 namespace blink { | 11 namespace blink { |
12 | 12 |
13 std::unique_ptr<IncrementLoadEventDelayCount> | 13 std::unique_ptr<IncrementLoadEventDelayCount> |
14 IncrementLoadEventDelayCount::create(Document& document) { | 14 IncrementLoadEventDelayCount::create(Document& document) { |
15 return WTF::wrapUnique(new IncrementLoadEventDelayCount(document)); | 15 return WTF::wrapUnique(new IncrementLoadEventDelayCount(document)); |
16 } | 16 } |
17 | 17 |
18 IncrementLoadEventDelayCount::IncrementLoadEventDelayCount(Document& document) | 18 IncrementLoadEventDelayCount::IncrementLoadEventDelayCount(Document& document) |
19 : m_document(&document) { | 19 : m_document(&document) { |
(...skipping 10 matching lines...) Expand all Loading... |
30 m_document = nullptr; | 30 m_document = nullptr; |
31 } | 31 } |
32 | 32 |
33 void IncrementLoadEventDelayCount::documentChanged(Document& newDocument) { | 33 void IncrementLoadEventDelayCount::documentChanged(Document& newDocument) { |
34 newDocument.incrementLoadEventDelayCount(); | 34 newDocument.incrementLoadEventDelayCount(); |
35 if (m_document) | 35 if (m_document) |
36 m_document->decrementLoadEventDelayCount(); | 36 m_document->decrementLoadEventDelayCount(); |
37 m_document = &newDocument; | 37 m_document = &newDocument; |
38 } | 38 } |
39 } // namespace blink | 39 } // namespace blink |
OLD | NEW |