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

Side by Side Diff: chrome/browser/views/frame/browser_view.h

Issue 2225003: Implement upgrade notifications.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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_VIEWS_FRAME_BROWSER_VIEW_H_ 5 #ifndef CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_
6 #define CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ 6 #define CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 virtual bool IsBookmarkBarVisible() const; 288 virtual bool IsBookmarkBarVisible() const;
289 virtual bool IsBookmarkBarAnimating() const; 289 virtual bool IsBookmarkBarAnimating() const;
290 virtual bool IsToolbarVisible() const; 290 virtual bool IsToolbarVisible() const;
291 virtual gfx::Rect GetRootWindowResizerRect() const; 291 virtual gfx::Rect GetRootWindowResizerRect() const;
292 virtual void DisableInactiveFrame(); 292 virtual void DisableInactiveFrame();
293 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, 293 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url,
294 Profile* profile); 294 Profile* profile);
295 virtual void ToggleBookmarkBar(); 295 virtual void ToggleBookmarkBar();
296 virtual void ToggleExtensionShelf(); 296 virtual void ToggleExtensionShelf();
297 virtual views::Window* ShowAboutChromeDialog(); 297 virtual views::Window* ShowAboutChromeDialog();
298 virtual void ShowUpdateChromeDialog();
298 virtual void ShowTaskManager(); 299 virtual void ShowTaskManager();
299 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); 300 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked);
300 virtual void SetDownloadShelfVisible(bool visible); 301 virtual void SetDownloadShelfVisible(bool visible);
301 virtual bool IsDownloadShelfVisible() const; 302 virtual bool IsDownloadShelfVisible() const;
302 virtual DownloadShelf* GetDownloadShelf(); 303 virtual DownloadShelf* GetDownloadShelf();
303 virtual void ShowReportBugDialog(); 304 virtual void ShowReportBugDialog();
304 virtual void ShowClearBrowsingDataDialog(); 305 virtual void ShowClearBrowsingDataDialog();
305 virtual void ShowImportDialog(); 306 virtual void ShowImportDialog();
306 virtual void ShowSearchEnginesDialog(); 307 virtual void ShowSearchEnginesDialog();
307 virtual void ShowPasswordManager(); 308 virtual void ShowPasswordManager();
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 ExtensionShelf* extension_shelf_; 591 ExtensionShelf* extension_shelf_;
591 592
592 scoped_ptr<BrowserExtender> browser_extender_; 593 scoped_ptr<BrowserExtender> browser_extender_;
593 594
594 // Last focused view that issued a tab traversal. 595 // Last focused view that issued a tab traversal.
595 int last_focused_view_storage_id_; 596 int last_focused_view_storage_id_;
596 597
597 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; 598 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_;
598 599
599 scoped_ptr<AccessibleViewHelper> accessible_view_helper_; 600 scoped_ptr<AccessibleViewHelper> accessible_view_helper_;
600 #if defined(OS_LINUX) 601 #if defined(OS_LINUX)
601 scoped_ptr<AccessibleWidgetHelper> accessible_widget_helper_; 602 scoped_ptr<AccessibleWidgetHelper> accessible_widget_helper_;
602 #endif 603 #endif
603 604
604 // Loads extension_app_icon_ asynchronously on the file thread. 605 // Loads extension_app_icon_ asynchronously on the file thread.
605 ImageLoadingTracker extension_app_icon_loader_; 606 ImageLoadingTracker extension_app_icon_loader_;
606 607
607 DISALLOW_COPY_AND_ASSIGN(BrowserView); 608 DISALLOW_COPY_AND_ASSIGN(BrowserView);
608 }; 609 };
609 610
610 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ 611 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698