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

Side by Side Diff: chrome/browser/ui/browser_window.h

Issue 9006027: Rip Out the Sidebar API (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years 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) 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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 #if defined(OS_WIN) || defined(TOOLKIT_VIEWS) 379 #if defined(OS_WIN) || defined(TOOLKIT_VIEWS)
380 // Returns the BookmarkBarView. 380 // Returns the BookmarkBarView.
381 virtual BookmarkBarView* GetBookmarkBarView() const = 0; 381 virtual BookmarkBarView* GetBookmarkBarView() const = 0;
382 382
383 // Returns the LocationBarView. 383 // Returns the LocationBarView.
384 virtual LocationBarView* GetLocationBarView() const = 0; 384 virtual LocationBarView* GetLocationBarView() const = 0;
385 385
386 // Returns the TabContentsContainer. 386 // Returns the TabContentsContainer.
387 virtual views::View* GetTabContentsContainerView() const = 0; 387 virtual views::View* GetTabContentsContainerView() const = 0;
388 388
389 // Returns the TabContentsContainer.
390 virtual views::View* GetSidebarContainerView() const = 0;
391
392 // Returns the ToolbarView. 389 // Returns the ToolbarView.
393 virtual ToolbarView* GetToolbarView() const = 0; 390 virtual ToolbarView* GetToolbarView() const = 0;
394 #endif 391 #endif
395 392
396 protected: 393 protected:
397 virtual ~BrowserWindowTesting() {} 394 virtual ~BrowserWindowTesting() {}
398 }; 395 };
399 396
400 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ 397 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698