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

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: respond to comments 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
« no previous file with comments | « no previous file | chrome/browser/ui/browser.cc » ('j') | chrome/browser/ui/browser.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 862 matching lines...) Expand 10 before | Expand all | Expand 10 after
873 const history::HistoryAddPageArgs& add_page_args, 873 const history::HistoryAddPageArgs& add_page_args,
874 NavigationType::Type navigation_type) OVERRIDE; 874 NavigationType::Type navigation_type) OVERRIDE;
875 virtual void ContentRestrictionsChanged(TabContents* source) OVERRIDE; 875 virtual void ContentRestrictionsChanged(TabContents* source) OVERRIDE;
876 virtual void RendererUnresponsive(TabContents* source) OVERRIDE; 876 virtual void RendererUnresponsive(TabContents* source) OVERRIDE;
877 virtual void RendererResponsive(TabContents* source) OVERRIDE; 877 virtual void RendererResponsive(TabContents* source) OVERRIDE;
878 virtual void WorkerCrashed(TabContents* source) OVERRIDE; 878 virtual void WorkerCrashed(TabContents* source) OVERRIDE;
879 virtual void DidNavigateMainFramePostCommit(TabContents* tab) OVERRIDE; 879 virtual void DidNavigateMainFramePostCommit(TabContents* tab) OVERRIDE;
880 virtual void DidNavigateToPendingEntry(TabContents* tab) OVERRIDE; 880 virtual void DidNavigateToPendingEntry(TabContents* tab) OVERRIDE;
881 virtual content::JavaScriptDialogCreator* 881 virtual content::JavaScriptDialogCreator*
882 GetJavaScriptDialogCreator() OVERRIDE; 882 GetJavaScriptDialogCreator() OVERRIDE;
883 virtual void EnterFullscreenMode() OVERRIDE;
884 virtual void ExitFullscreenMode() OVERRIDE;
883 885
884 // Overridden from TabContentsWrapperDelegate: 886 // Overridden from TabContentsWrapperDelegate:
885 virtual void OnDidGetApplicationInfo(TabContentsWrapper* source, 887 virtual void OnDidGetApplicationInfo(TabContentsWrapper* source,
886 int32 page_id) OVERRIDE; 888 int32 page_id) OVERRIDE;
887 virtual void OnInstallApplication( 889 virtual void OnInstallApplication(
888 TabContentsWrapper* source, 890 TabContentsWrapper* source,
889 const WebApplicationInfo& app_info) OVERRIDE; 891 const WebApplicationInfo& app_info) OVERRIDE;
890 892
891 // Note that the caller is responsible for deleting |old_tab_contents|. 893 // Note that the caller is responsible for deleting |old_tab_contents|.
892 virtual void SwapTabContents(TabContentsWrapper* old_tab_contents, 894 virtual void SwapTabContents(TabContentsWrapper* old_tab_contents,
(...skipping 369 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') | chrome/browser/ui/browser.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698