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

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

Issue 2819070: Mac: Add tabpose window (Closed)
Patch Set: mac compile?! Created 10 years, 4 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 | « no previous file | chrome/browser/browser.cc » ('j') | chrome/browser/browser.cc » ('J')
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 #ifndef CHROME_BROWSER_BROWSER_H_ 5 #ifndef CHROME_BROWSER_BROWSER_H_
6 #define CHROME_BROWSER_BROWSER_H_ 6 #define CHROME_BROWSER_BROWSER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 void OpenCurrentURL(); 426 void OpenCurrentURL();
427 void Stop(); 427 void Stop();
428 // Window management commands 428 // Window management commands
429 void NewWindow(); 429 void NewWindow();
430 void NewIncognitoWindow(); 430 void NewIncognitoWindow();
431 void CloseWindow(); 431 void CloseWindow();
432 void NewTab(); 432 void NewTab();
433 void CloseTab(); 433 void CloseTab();
434 void SelectNextTab(); 434 void SelectNextTab();
435 void SelectPreviousTab(); 435 void SelectPreviousTab();
436 void OpenTabpose();
436 void MoveTabNext(); 437 void MoveTabNext();
437 void MoveTabPrevious(); 438 void MoveTabPrevious();
438 void SelectNumberedTab(int index); 439 void SelectNumberedTab(int index);
439 void SelectLastTab(); 440 void SelectLastTab();
440 void DuplicateTab(); 441 void DuplicateTab();
441 void WriteCurrentURLToClipboard(); 442 void WriteCurrentURLToClipboard();
442 void ConvertPopupToTabbedBrowser(); 443 void ConvertPopupToTabbedBrowser();
443 // In kiosk mode, the first toggle is valid, the rest is discarded. 444 // In kiosk mode, the first toggle is valid, the rest is discarded.
444 void ToggleFullscreenMode(); 445 void ToggleFullscreenMode();
445 void Exit(); 446 void Exit();
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after
1067 mutable BooleanPrefMember use_vertical_tabs_; 1068 mutable BooleanPrefMember use_vertical_tabs_;
1068 1069
1069 // The profile's tab restore service. The service is owned by the profile, 1070 // The profile's tab restore service. The service is owned by the profile,
1070 // and we install ourselves as an observer. 1071 // and we install ourselves as an observer.
1071 TabRestoreService* tab_restore_service_; 1072 TabRestoreService* tab_restore_service_;
1072 1073
1073 DISALLOW_COPY_AND_ASSIGN(Browser); 1074 DISALLOW_COPY_AND_ASSIGN(Browser);
1074 }; 1075 };
1075 1076
1076 #endif // CHROME_BROWSER_BROWSER_H_ 1077 #endif // CHROME_BROWSER_BROWSER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browser.cc » ('j') | chrome/browser/browser.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698