diff options
author | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-18 21:03:51 +0000 |
---|---|---|
committer | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-18 21:03:51 +0000 |
commit | a576f0f1389f44c550264bd55c213c1d4d20ecf7 (patch) | |
tree | 0947e0551b7d3b404dc7f63605607c6a65b51634 /chrome/browser/gtk/bookmark_bar_gtk.h | |
parent | c44a9d4aaff54ab651c380c134a950769e9e3898 (diff) | |
download | chromium_src-a576f0f1389f44c550264bd55c213c1d4d20ecf7.zip chromium_src-a576f0f1389f44c550264bd55c213c1d4d20ecf7.tar.gz chromium_src-a576f0f1389f44c550264bd55c213c1d4d20ecf7.tar.bz2 |
Add support for the bookmark sync error button on the bookmark bar to Linux.
BUG=none
TEST=Change your password after logging into bookmark sync, then restart your browser. There should be a warning button on the bookmark bar now.
Review URL: http://codereview.chromium.org/387054
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32391 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/bookmark_bar_gtk.h')
-rw-r--r-- | chrome/browser/gtk/bookmark_bar_gtk.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/gtk/bookmark_bar_gtk.h b/chrome/browser/gtk/bookmark_bar_gtk.h index 1e0e97e..571e43f 100644 --- a/chrome/browser/gtk/bookmark_bar_gtk.h +++ b/chrome/browser/gtk/bookmark_bar_gtk.h @@ -207,6 +207,9 @@ class BookmarkBarGtk : public AnimationDelegate, static gboolean OnButtonPressed(GtkWidget* sender, GdkEventButton* event, BookmarkBarGtk* bar); + static gboolean OnSyncErrorButtonPressed(GtkWidget* sender, + GdkEventButton* event, + BookmarkBarGtk* bar); static void OnClicked(GtkWidget* sender, BookmarkBarGtk* bar); static void OnButtonDragBegin(GtkWidget* widget, @@ -316,6 +319,9 @@ class BookmarkBarGtk : public AnimationDelegate, // The other bookmarks button. GtkWidget* other_bookmarks_button_; + // The sync error button. + GtkWidget* sync_error_button_; + // A pointer to the ProfileSyncService instance if one exists. ProfileSyncService* sync_service_; |