Index: chrome/browser/views/first_run_view.h |
=================================================================== |
--- chrome/browser/views/first_run_view.h (revision 20029) |
+++ chrome/browser/views/first_run_view.h (working copy) |
@@ -28,6 +28,8 @@ |
explicit FirstRunView(Profile* profile); |
virtual ~FirstRunView(); |
+ bool accepted() const { return accepted_;} |
+ |
// Overridden from views::View: |
virtual gfx::Size GetPreferredSize(); |
virtual void Layout(); |
@@ -61,6 +63,10 @@ |
views::Link* customize_link_; |
bool customize_selected_; |
+ // Whether the user accepted (pressed the "Start" button as opposed to |
+ // "Cancel"). |
+ bool accepted_; |
+ |
DISALLOW_COPY_AND_ASSIGN(FirstRunView); |
}; |