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

Unified Diff: chrome/browser/ui/views/autofill/autofill_dialog_views.h

Issue 14895004: Fixing autocheckout progress bar repaint bug. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
Index: chrome/browser/ui/views/autofill/autofill_dialog_views.h
diff --git a/chrome/browser/ui/views/autofill/autofill_dialog_views.h b/chrome/browser/ui/views/autofill/autofill_dialog_views.h
index 6e4df9b077575daab5cfe88c8409ec0f3eb60dbe..374460146956e51f2fdc0387048e6e7c358bbf3e 100644
--- a/chrome/browser/ui/views/autofill/autofill_dialog_views.h
+++ b/chrome/browser/ui/views/autofill/autofill_dialog_views.h
@@ -390,9 +390,22 @@ class AutofillDialogViews : public AutofillDialogView,
views::ImageButton* suggested_button;
};
+ class ButtonStripView : public views::View {
+ public:
+ ButtonStripView();
+ virtual ~ButtonStripView();
+
+ protected:
+ virtual void ChildVisibilityChanged(views::View* child) OVERRIDE;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(ButtonStripView);
+ };
+
class AutocheckoutProgressBar : public views::ProgressBar {
public:
AutocheckoutProgressBar();
+ virtual ~AutocheckoutProgressBar();
private:
// Overidden from View:

Powered by Google App Engine
This is Rietveld 408576698