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

Unified Diff: ui/events/event_target.h

Issue 1411833006: Refactoring to make adding ink drop animations easier (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Attempt to refactor ink drop animations (wired up chained EventHandler) Created 5 years, 1 month 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: ui/events/event_target.h
diff --git a/ui/events/event_target.h b/ui/events/event_target.h
index e8b14a6445851b3a5b2e00a9c5dae39c0a79da2e..c8273f4aad88539e5007935afe376bc245c738ba 100644
--- a/ui/events/event_target.h
+++ b/ui/events/event_target.h
@@ -80,9 +80,9 @@ class EVENTS_EXPORT EventTarget : public EventHandler {
void set_target_handler(EventHandler* handler) {
target_handler_ = handler;
}
+ EventHandler* target_handler() { return target_handler_; }
protected:
- EventHandler* target_handler() { return target_handler_; }
// Overridden from EventHandler:
void OnEvent(Event* event) override;

Powered by Google App Engine
This is Rietveld 408576698