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

Unified Diff: views/window/client_view.h

Issue 8227003: Views Bubble API adjustments and cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add close_on_esc setting and fade-in functionality. Created 9 years, 2 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 | « views/widget/widget_delegate.cc ('k') | views/window/client_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/window/client_view.h
diff --git a/views/window/client_view.h b/views/window/client_view.h
index 57543d1534e73130b59ed287c3cd060448cab116..f45e508f0d5264c27eefd47df3aecfeaf9975e00 100644
--- a/views/window/client_view.h
+++ b/views/window/client_view.h
@@ -46,8 +46,7 @@ class VIEWS_EXPORT ClientView : public View {
// dialog, etc.
virtual bool CanClose();
- // Notification that the widget is closing. The default implementation
- // forwards the notification to the delegate.
+ // Notification that the widget is closing.
virtual void WidgetClosing();
// Tests to see if the specified point (in view coordinates) is within the
@@ -68,10 +67,11 @@ class VIEWS_EXPORT ClientView : public View {
protected:
// Overridden from View:
- virtual void ViewHierarchyChanged(
- bool is_add, View* parent, View* child) OVERRIDE;
- virtual void OnBoundsChanged(const gfx::Rect& previous_bounds) OVERRIDE;
virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE;
+ virtual void OnBoundsChanged(const gfx::Rect& previous_bounds) OVERRIDE;
+ virtual void ViewHierarchyChanged(bool is_add,
+ View* parent,
+ View* child) OVERRIDE;
// Accessors for private data members.
View* contents_view() const { return contents_view_; }
« no previous file with comments | « views/widget/widget_delegate.cc ('k') | views/window/client_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698