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

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

Issue 5019005: Add "open as window" menu item to NTP app menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments. Created 10 years, 1 month 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) 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 #ifndef CHROME_BROWSER_UI_BROWSER_H_ 5 #ifndef CHROME_BROWSER_UI_BROWSER_H_
6 #define CHROME_BROWSER_UI_BROWSER_H_ 6 #define CHROME_BROWSER_UI_BROWSER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 // is true, the application will be opened as a Browser::Type::APP_PANEL in 243 // is true, the application will be opened as a Browser::Type::APP_PANEL in
244 // app panel window, otherwise it will be opened as as either 244 // app panel window, otherwise it will be opened as as either
245 // Browser::Type::APP a.k.a. "thin frame" (if |extension| is NULL) or 245 // Browser::Type::APP a.k.a. "thin frame" (if |extension| is NULL) or
246 // Browser::Type::EXTENSION_APP (if |extension| is non-NULL). 246 // Browser::Type::EXTENSION_APP (if |extension| is non-NULL).
247 static TabContents* OpenApplicationWindow( 247 static TabContents* OpenApplicationWindow(
248 Profile* profile, 248 Profile* profile,
249 const Extension* extension, 249 const Extension* extension,
250 extension_misc::LaunchContainer container, 250 extension_misc::LaunchContainer container,
251 const GURL& url); 251 const GURL& url);
252 252
253 // Open an application for |extension| in a new application window or panel. 253 // Open an application in a new application window. Used to implement
254 static TabContents* OpenApplicationWindow(Profile* profile, GURL& url); 254 // app shortcuts.
255 static TabContents* OpenApplicationWindow(Profile* profile, const GURL& url);
255 256
256 // Open an application for |extension| in a new application tab, or 257 // Open an application for |extension| in a new application tab, or
257 // |existing_tab| if not NULL. Returns NULL if there are no appropriate 258 // |existing_tab| if not NULL. Returns NULL if there are no appropriate
258 // existing browser windows for |profile|. 259 // existing browser windows for |profile|.
259 static TabContents* OpenApplicationTab(Profile* profile, 260 static TabContents* OpenApplicationTab(Profile* profile,
260 const Extension* extension, 261 const Extension* extension,
261 TabContents* existing_tab); 262 TabContents* existing_tab);
262 263
263 // Opens a new window and opens the bookmark manager. 264 // Opens a new window and opens the bookmark manager.
264 static void OpenBookmarkManagerWindow(Profile* profile); 265 static void OpenBookmarkManagerWindow(Profile* profile);
(...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after
1086 // The profile's tab restore service. The service is owned by the profile, 1087 // The profile's tab restore service. The service is owned by the profile,
1087 // and we install ourselves as an observer. 1088 // and we install ourselves as an observer.
1088 TabRestoreService* tab_restore_service_; 1089 TabRestoreService* tab_restore_service_;
1089 1090
1090 scoped_ptr<InstantController> instant_; 1091 scoped_ptr<InstantController> instant_;
1091 1092
1092 DISALLOW_COPY_AND_ASSIGN(Browser); 1093 DISALLOW_COPY_AND_ASSIGN(Browser);
1093 }; 1094 };
1094 1095
1095 #endif // CHROME_BROWSER_UI_BROWSER_H_ 1096 #endif // CHROME_BROWSER_UI_BROWSER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698