| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 virtual bool IsDownloadShelfVisible() const; | 248 virtual bool IsDownloadShelfVisible() const; |
| 249 virtual DownloadShelf* GetDownloadShelf(); | 249 virtual DownloadShelf* GetDownloadShelf(); |
| 250 virtual void ShowReportBugDialog(); | 250 virtual void ShowReportBugDialog(); |
| 251 virtual void ShowClearBrowsingDataDialog(); | 251 virtual void ShowClearBrowsingDataDialog(); |
| 252 virtual void ShowImportDialog(); | 252 virtual void ShowImportDialog(); |
| 253 virtual void ShowSearchEnginesDialog(); | 253 virtual void ShowSearchEnginesDialog(); |
| 254 virtual void ShowPasswordManager(); | 254 virtual void ShowPasswordManager(); |
| 255 virtual void ShowSelectProfileDialog(); | 255 virtual void ShowSelectProfileDialog(); |
| 256 virtual void ShowNewProfileDialog(); | 256 virtual void ShowNewProfileDialog(); |
| 257 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents); | 257 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents); |
| 258 virtual void ShowHistoryTooNewDialog(); | 258 virtual void ShowProfileErrorDialog(int message_id); |
| 259 virtual void ShowThemeInstallBubble(); | 259 virtual void ShowThemeInstallBubble(); |
| 260 virtual void ConfirmBrowserCloseWithPendingDownloads(); | 260 virtual void ConfirmBrowserCloseWithPendingDownloads(); |
| 261 virtual void ShowHTMLDialog(HtmlDialogUIDelegate* delegate, | 261 virtual void ShowHTMLDialog(HtmlDialogUIDelegate* delegate, |
| 262 gfx::NativeWindow parent_window); | 262 gfx::NativeWindow parent_window); |
| 263 virtual void ContinueDraggingDetachedTab(const gfx::Rect& tab_bounds); | 263 virtual void ContinueDraggingDetachedTab(const gfx::Rect& tab_bounds); |
| 264 virtual void UserChangedTheme(); | 264 virtual void UserChangedTheme(); |
| 265 virtual int GetExtraRenderViewHeight() const; | 265 virtual int GetExtraRenderViewHeight() const; |
| 266 virtual void TabContentsFocused(TabContents* source); | 266 virtual void TabContentsFocused(TabContents* source); |
| 267 virtual void ShowPageInfo(Profile* profile, | 267 virtual void ShowPageInfo(Profile* profile, |
| 268 const GURL& url, | 268 const GURL& url, |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 | 527 |
| 528 // The accessible name of this view. | 528 // The accessible name of this view. |
| 529 std::wstring accessible_name_; | 529 std::wstring accessible_name_; |
| 530 | 530 |
| 531 scoped_ptr<BrowserExtender> browser_extender_; | 531 scoped_ptr<BrowserExtender> browser_extender_; |
| 532 | 532 |
| 533 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 533 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 534 }; | 534 }; |
| 535 | 535 |
| 536 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ | 536 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |