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

Unified Diff: ui/views/events/event.h

Issue 9027020: Bypass ToplevelWindowEventFilter for panels. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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: ui/views/events/event.h
diff --git a/ui/views/events/event.h b/ui/views/events/event.h
index 4d0d2f16bb9120ebf307709488991b61174cda6b..c223aed6145fdda48a91f3733f1ae1abebcedeab 100644
--- a/ui/views/events/event.h
+++ b/ui/views/events/event.h
@@ -39,7 +39,6 @@ typedef base::NativeEvent NativeEvent;
class View;
namespace internal {
-class NativeWidgetView;
class RootView;
}
@@ -226,7 +225,6 @@ class VIEWS_EXPORT MouseEvent : public LocatedEvent {
}
private:
- friend class internal::NativeWidgetView;
friend class internal::RootView;
DISALLOW_COPY_AND_ASSIGN(MouseEvent);
@@ -269,7 +267,6 @@ class VIEWS_EXPORT TouchEvent : public LocatedEvent {
float force() const { return force_; }
private:
- friend class internal::NativeWidgetView;
friend class internal::RootView;
TouchEvent(const TouchEvent& model, View* root);
@@ -365,7 +362,6 @@ class VIEWS_EXPORT MouseWheelEvent : public MouseEvent {
private:
friend class internal::RootView;
- friend class internal::NativeWidgetView;
MouseWheelEvent(const MouseWheelEvent& model, View* root)
: MouseEvent(model, root),

Powered by Google App Engine
This is Rietveld 408576698