Chromium Code Reviews| Index: chrome/browser/chromeos/frame/browser_view.cc |
| diff --git a/chrome/browser/chromeos/frame/browser_view.cc b/chrome/browser/chromeos/frame/browser_view.cc |
| index 489fa046da727f2ba44baf953b7237d28b4e834d..0b9b8dc3f295a09559acd2418c89f8db5060a4c3 100644 |
| --- a/chrome/browser/chromeos/frame/browser_view.cc |
| +++ b/chrome/browser/chromeos/frame/browser_view.cc |
| @@ -329,6 +329,23 @@ BrowserView::~BrowserView() { |
| BrowserList::RemoveObserver(this); |
| } |
| +void BrowserView::AddTrayButton(StatusAreaButton* button, bool bordered) { |
| + status_area_->AddButton(button, bordered); |
| +} |
| + |
| +void BrowserView::RemoveTrayButton(StatusAreaButton* button) { |
| + status_area_->RemoveButton(button); |
| +} |
| + |
| +bool BrowserView::ContainsButton(StatusAreaButton* button) { |
| + return status_area_->Contains(button); |
| +} |
| + |
| +chromeos::BrowserView* BrowserView::GetBrowserViewForBrowser(Browser* browser) { |
| + return static_cast<chromeos::BrowserView*>( |
| + ::BrowserView::GetBrowserViewForBrowser(browser)); |
|
Andrew T Wilson (Slow)
2011/11/17 21:32:31
Can you add a comment here about what exactly this
Leandro GraciĆ” Gil
2011/11/17 22:42:45
Done.
|
| +} |
| + |
| // BrowserView, ::BrowserView overrides: |
| void BrowserView::Init() { |