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

Side by Side Diff: chrome/browser/gtk/browser_window_gtk.h

Issue 2225003: Implement upgrade notifications.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ 5 #ifndef CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_
6 #define CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ 6 #define CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_
7 7
8 #include <gtk/gtk.h> 8 #include <gtk/gtk.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 virtual void FocusPageAndAppMenus(); 78 virtual void FocusPageAndAppMenus();
79 virtual bool IsBookmarkBarVisible() const; 79 virtual bool IsBookmarkBarVisible() const;
80 virtual bool IsBookmarkBarAnimating() const; 80 virtual bool IsBookmarkBarAnimating() const;
81 virtual bool IsToolbarVisible() const; 81 virtual bool IsToolbarVisible() const;
82 virtual gfx::Rect GetRootWindowResizerRect() const; 82 virtual gfx::Rect GetRootWindowResizerRect() const;
83 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, 83 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url,
84 Profile* profile); 84 Profile* profile);
85 virtual void ToggleBookmarkBar(); 85 virtual void ToggleBookmarkBar();
86 virtual void ToggleExtensionShelf(); 86 virtual void ToggleExtensionShelf();
87 virtual views::Window* ShowAboutChromeDialog(); 87 virtual views::Window* ShowAboutChromeDialog();
88 virtual void ShowUpdateChromeDialog();
88 virtual void ShowTaskManager(); 89 virtual void ShowTaskManager();
89 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); 90 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked);
90 virtual bool IsDownloadShelfVisible() const; 91 virtual bool IsDownloadShelfVisible() const;
91 virtual DownloadShelf* GetDownloadShelf(); 92 virtual DownloadShelf* GetDownloadShelf();
92 virtual void ShowReportBugDialog(); 93 virtual void ShowReportBugDialog();
93 virtual void ShowClearBrowsingDataDialog(); 94 virtual void ShowClearBrowsingDataDialog();
94 virtual void ShowImportDialog(); 95 virtual void ShowImportDialog();
95 virtual void ShowSearchEnginesDialog(); 96 virtual void ShowSearchEnginesDialog();
96 virtual void ShowPasswordManager(); 97 virtual void ShowPasswordManager();
97 virtual void ShowSelectProfileDialog(); 98 virtual void ShowSelectProfileDialog();
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 420
420 // The accelerator group used to handle accelerators, owned by this object. 421 // The accelerator group used to handle accelerators, owned by this object.
421 GtkAccelGroup* accel_group_; 422 GtkAccelGroup* accel_group_;
422 423
423 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; 424 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_;
424 425
425 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); 426 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk);
426 }; 427 };
427 428
428 #endif // CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ 429 #endif // CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698