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

Unified Diff: third_party/WebKit/Source/core/html/HTMLStyleElement.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/HTMLStyleElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLStyleElement.cpp b/third_party/WebKit/Source/core/html/HTMLStyleElement.cpp
index 59c00ce16518b6602b631f1a545e68e1d2c90e32..25ebf50dc9a3ca55e16c9f04be9f39f8aa8f889d 100644
--- a/third_party/WebKit/Source/core/html/HTMLStyleElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLStyleElement.cpp
@@ -124,9 +124,9 @@ void HTMLStyleElement::notifyLoadedSheetAndAllCriticalSubresources(
TaskRunnerHelper::get(TaskType::DOMManipulation, &document())
->postTask(
BLINK_FROM_HERE,
- WTF::bind(&HTMLStyleElement::dispatchPendingEvent,
- wrapPersistent(this),
- passed(IncrementLoadEventDelayCount::create(document()))));
+ WTF::bind(
+ &HTMLStyleElement::dispatchPendingEvent, wrapPersistent(this),
+ WTF::passed(IncrementLoadEventDelayCount::create(document()))));
m_firedLoad = true;
}
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLMediaElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698