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

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: Merge/sync 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
« no previous file with comments | « ui/aura/client/window_types.h ('k') | ui/views/view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/events/event.h
diff --git a/ui/views/events/event.h b/ui/views/events/event.h
index 10bee952f44ed0b3a167d3bb50a73dad32aae5b8..640e9918cf2fe27e7a47fe3f111fffb64b8ca347 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),
« no previous file with comments | « ui/aura/client/window_types.h ('k') | ui/views/view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698