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

Side by Side Diff: chrome/browser/views/frame/browser_view.cc

Issue 593037: Remove the temporary scaffolding stubs. (Closed)
Patch Set: fixes Created 10 years, 10 months 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
« no previous file with comments | « chrome/browser/tab_contents/tab_contents_view_mac.mm ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "chrome/browser/views/frame/browser_view.h" 5 #include "chrome/browser/views/frame/browser_view.h"
6 6
7 #if defined(OS_LINUX) 7 #if defined(OS_LINUX)
8 #include <gtk/gtk.h> 8 #include <gtk/gtk.h>
9 #endif 9 #endif
10 10
(...skipping 2103 matching lines...) Expand 10 before | Expand all | Expand 10 after
2114 BrowserView* view = new BrowserView(browser); 2114 BrowserView* view = new BrowserView(browser);
2115 BrowserFrame::Create(view, browser->profile()); 2115 BrowserFrame::Create(view, browser->profile());
2116 return view; 2116 return view;
2117 } 2117 }
2118 #endif 2118 #endif
2119 2119
2120 // static 2120 // static
2121 FindBar* BrowserWindow::CreateFindBar(Browser* browser) { 2121 FindBar* BrowserWindow::CreateFindBar(Browser* browser) {
2122 return browser::CreateFindBar(static_cast<BrowserView*>(browser->window())); 2122 return browser::CreateFindBar(static_cast<BrowserView*>(browser->window()));
2123 } 2123 }
2124
2125 // static
2126 void BrowserList::AllBrowsersClosed() {
2127 views::Window::CloseAllSecondaryWindows();
2128 }
OLDNEW
« no previous file with comments | « chrome/browser/tab_contents/tab_contents_view_mac.mm ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698