Chromium Code Reviews| Index: third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp |
| diff --git a/third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp b/third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp |
| index 1e3f4697b15bbf69ad75b7279da48b8c3c781f89..f180306838023d0a0d4f6ee0f700ba60380e0d6a 100644 |
| --- a/third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp |
| +++ b/third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp |
| @@ -45,7 +45,8 @@ namespace blink { |
| static const char kSupplementName[] = "CSSSelectorWatch"; |
| CSSSelectorWatch::CSSSelectorWatch(Document& document) |
| - : m_document(document) |
| + : Supplement<Document>(document) |
| + , m_document(document) |
|
sof
2016/07/13 07:41:57
Do you need m_document any longer?
haraken
2016/07/13 07:44:55
This is exactly what I wanted to remove :) Removed
|
| , m_callbackSelectorChangeTimer(this, &CSSSelectorWatch::callbackSelectorChangeTimerFired) |
| , m_timerExpirations(0) |
| { |