OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 virtual void ConfirmSetDefaultSearchProvider( | 282 virtual void ConfirmSetDefaultSearchProvider( |
283 TabContents* tab_contents, | 283 TabContents* tab_contents, |
284 TemplateURL* template_url, | 284 TemplateURL* template_url, |
285 TemplateURLModel* template_url_model); | 285 TemplateURLModel* template_url_model); |
286 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, | 286 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, |
287 Profile* profile); | 287 Profile* profile); |
288 virtual void ToggleBookmarkBar(); | 288 virtual void ToggleBookmarkBar(); |
289 virtual views::Window* ShowAboutChromeDialog(); | 289 virtual views::Window* ShowAboutChromeDialog(); |
290 virtual void ShowUpdateChromeDialog(); | 290 virtual void ShowUpdateChromeDialog(); |
291 virtual void ShowTaskManager(); | 291 virtual void ShowTaskManager(); |
| 292 virtual void ShowBackgroundPages(); |
292 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); | 293 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); |
293 virtual void SetDownloadShelfVisible(bool visible); | 294 virtual void SetDownloadShelfVisible(bool visible); |
294 virtual bool IsDownloadShelfVisible() const; | 295 virtual bool IsDownloadShelfVisible() const; |
295 virtual DownloadShelf* GetDownloadShelf(); | 296 virtual DownloadShelf* GetDownloadShelf(); |
296 virtual void ShowClearBrowsingDataDialog(); | 297 virtual void ShowClearBrowsingDataDialog(); |
297 virtual void ShowImportDialog(); | 298 virtual void ShowImportDialog(); |
298 virtual void ShowSearchEnginesDialog(); | 299 virtual void ShowSearchEnginesDialog(); |
299 virtual void ShowPasswordManager(); | 300 virtual void ShowPasswordManager(); |
300 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents); | 301 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents); |
301 virtual void ShowContentSettingsWindow(ContentSettingsType content_type, | 302 virtual void ShowContentSettingsWindow(ContentSettingsType content_type, |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
671 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; | 672 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; |
672 | 673 |
673 scoped_ptr<AccessibleViewHelper> accessible_view_helper_; | 674 scoped_ptr<AccessibleViewHelper> accessible_view_helper_; |
674 | 675 |
675 NotificationRegistrar registrar_; | 676 NotificationRegistrar registrar_; |
676 | 677 |
677 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 678 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
678 }; | 679 }; |
679 | 680 |
680 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 681 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |