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

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

Issue 1379463002: Oilpan: Fix build after 7338ad63. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/HTMLInputElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
index 8beafdc24f696395c503d4b3e4660597544362a2..da256faa4b3c94c5792e6924d13b6c43b1fa3685 100644
--- a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
@@ -1182,7 +1182,7 @@ void HTMLInputElement::postDispatchEventHandler(Event* event, void* dataFromPreD
if (!state)
return;
// m_inputTypeView could be freed if the type attribute is modified through a change event handler.
- RefPtrWillBeRawPtr<InputTypeView> protect(m_inputTypeView);
+ RefPtrWillBeRawPtr<InputTypeView> protect(m_inputTypeView.get());
m_inputTypeView->didDispatchClick(event, *state);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698