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

Unified Diff: third_party/WebKit/Source/core/dom/Fullscreen.cpp

Issue 2574773002: Migrate WTF::Vector::append() to ::push_back() [part 4 of N] (Closed)
Patch Set: rebase 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/dom/Fullscreen.cpp
diff --git a/third_party/WebKit/Source/core/dom/Fullscreen.cpp b/third_party/WebKit/Source/core/dom/Fullscreen.cpp
index 60a91662e467be9ae73c67779cbf7953b6b55943..757f18f4fbced805d3946606551a02f88394704f 100644
--- a/third_party/WebKit/Source/core/dom/Fullscreen.cpp
+++ b/third_party/WebKit/Source/core/dom/Fullscreen.cpp
@@ -820,7 +820,7 @@ void Fullscreen::popFullscreenElementStack() {
void Fullscreen::pushFullscreenElementStack(Element& element,
RequestType requestType) {
- m_fullscreenElementStack.append(std::make_pair(&element, requestType));
+ m_fullscreenElementStack.push_back(std::make_pair(&element, requestType));
}
DEFINE_TRACE(Fullscreen) {

Powered by Google App Engine
This is Rietveld 408576698