| 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_BROWSER_WINDOW_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_WINDOW_H_ |
| 6 #define CHROME_BROWSER_UI_BROWSER_WINDOW_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_WINDOW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" | 9 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" |
| 10 #include "chrome/browser/ui/fullscreen_exit_bubble_type.h" | 10 #include "chrome/browser/ui/fullscreen_exit_bubble_type.h" |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 #if defined(OS_WIN) || defined(TOOLKIT_VIEWS) | 392 #if defined(OS_WIN) || defined(TOOLKIT_VIEWS) |
| 393 // Returns the BookmarkBarView. | 393 // Returns the BookmarkBarView. |
| 394 virtual BookmarkBarView* GetBookmarkBarView() const = 0; | 394 virtual BookmarkBarView* GetBookmarkBarView() const = 0; |
| 395 | 395 |
| 396 // Returns the LocationBarView. | 396 // Returns the LocationBarView. |
| 397 virtual LocationBarView* GetLocationBarView() const = 0; | 397 virtual LocationBarView* GetLocationBarView() const = 0; |
| 398 | 398 |
| 399 // Returns the TabContentsContainer. | 399 // Returns the TabContentsContainer. |
| 400 virtual views::View* GetTabContentsContainerView() const = 0; | 400 virtual views::View* GetTabContentsContainerView() const = 0; |
| 401 | 401 |
| 402 // Returns the TabContentsContainer. | |
| 403 virtual views::View* GetSidebarContainerView() const = 0; | |
| 404 | |
| 405 // Returns the ToolbarView. | 402 // Returns the ToolbarView. |
| 406 virtual ToolbarView* GetToolbarView() const = 0; | 403 virtual ToolbarView* GetToolbarView() const = 0; |
| 407 #endif | 404 #endif |
| 408 | 405 |
| 409 protected: | 406 protected: |
| 410 virtual ~BrowserWindowTesting() {} | 407 virtual ~BrowserWindowTesting() {} |
| 411 }; | 408 }; |
| 412 | 409 |
| 413 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ | 410 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ |
| OLD | NEW |