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

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

Issue 7461059: Fullscreen JS API implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: responded to sky's comment Created 9 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 | 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_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 483 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 void OpenTabpose(); 494 void OpenTabpose();
495 void MoveTabNext(); 495 void MoveTabNext();
496 void MoveTabPrevious(); 496 void MoveTabPrevious();
497 void SelectNumberedTab(int index); 497 void SelectNumberedTab(int index);
498 void SelectLastTab(); 498 void SelectLastTab();
499 void DuplicateTab(); 499 void DuplicateTab();
500 void WriteCurrentURLToClipboard(); 500 void WriteCurrentURLToClipboard();
501 void ConvertPopupToTabbedBrowser(); 501 void ConvertPopupToTabbedBrowser();
502 // In kiosk mode, the first toggle is valid, the rest is discarded. 502 // In kiosk mode, the first toggle is valid, the rest is discarded.
503 void ToggleFullscreenMode(); 503 void ToggleFullscreenMode();
504 void EnterFullscreenMode();
sky 2011/07/28 03:53:29 These should be with the other TabContentsDelegate
koz (OOO until 15th September) 2011/07/28 05:14:30 Done.
505 void ExitFullscreenMode();
504 void Exit(); 506 void Exit();
505 #if defined(OS_CHROMEOS) 507 #if defined(OS_CHROMEOS)
506 void Search(); 508 void Search();
507 void ShowKeyboardOverlay(); 509 void ShowKeyboardOverlay();
508 #endif 510 #endif
509 511
510 // Page-related commands 512 // Page-related commands
511 void BookmarkCurrentPage(); 513 void BookmarkCurrentPage();
512 void SavePage(); 514 void SavePage();
513 void ViewSelectedSource(); 515 void ViewSelectedSource();
(...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after
1262 1264
1263 scoped_ptr<InstantController> instant_; 1265 scoped_ptr<InstantController> instant_;
1264 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; 1266 scoped_ptr<InstantUnloadHandler> instant_unload_handler_;
1265 1267
1266 BookmarkBar::State bookmark_bar_state_; 1268 BookmarkBar::State bookmark_bar_state_;
1267 1269
1268 DISALLOW_COPY_AND_ASSIGN(Browser); 1270 DISALLOW_COPY_AND_ASSIGN(Browser);
1269 }; 1271 };
1270 1272
1271 #endif // CHROME_BROWSER_UI_BROWSER_H_ 1273 #endif // CHROME_BROWSER_UI_BROWSER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/browser.cc » ('j') | content/browser/renderer_host/render_view_host_delegate.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698