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

Unified Diff: Source/core/dom/Event.cpp

Issue 22893051: Add support for BeforeUnloadEvent (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix test failures Created 7 years, 4 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 | « Source/core/dom/Event.h ('k') | Source/core/dom/Event.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Event.cpp
diff --git a/Source/core/dom/Event.cpp b/Source/core/dom/Event.cpp
index 1b714f75312168ee1b7e664304b0b849142a1b2a..5b653df3bc5087e35d954177c86d98fcc33e658d 100644
--- a/Source/core/dom/Event.cpp
+++ b/Source/core/dom/Event.cpp
@@ -148,18 +148,14 @@ bool Event::isClipboardEvent() const
return false;
}
-bool Event::storesResultAsString() const
-{
- return false;
-}
-
bool Event::isBeforeTextInsertedEvent() const
{
return false;
}
-void Event::storeResult(const String&)
+bool Event::isBeforeUnloadEvent() const
{
+ return false;
}
void Event::setTarget(PassRefPtr<EventTarget> target)
« no previous file with comments | « Source/core/dom/Event.h ('k') | Source/core/dom/Event.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698