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

Side by Side Diff: chrome/browser/ui/views/frame/browser_view.h

Issue 1650483002: Refactor: Untangle Mac's ExclusiveAccessContext from BrowserWindow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: self nits, More robust interface, fix other random stuff Created 4 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_VIEWS_FRAME_BROWSER_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 ExclusiveAccessBubbleType bubble_type, 282 ExclusiveAccessBubbleType bubble_type,
283 bool with_toolbar) override; 283 bool with_toolbar) override;
284 void ExitFullscreen() override; 284 void ExitFullscreen() override;
285 void UpdateExclusiveAccessExitBubbleContent( 285 void UpdateExclusiveAccessExitBubbleContent(
286 const GURL& url, 286 const GURL& url,
287 ExclusiveAccessBubbleType bubble_type) override; 287 ExclusiveAccessBubbleType bubble_type) override;
288 void OnExclusiveAccessUserInput() override; 288 void OnExclusiveAccessUserInput() override;
289 bool ShouldHideUIForFullscreen() const override; 289 bool ShouldHideUIForFullscreen() const override;
290 bool IsFullscreen() const override; 290 bool IsFullscreen() const override;
291 bool IsFullscreenBubbleVisible() const override; 291 bool IsFullscreenBubbleVisible() const override;
292 bool SupportsFullscreenWithToolbar() const override;
293 void UpdateFullscreenWithToolbar(bool with_toolbar) override;
294 void ToggleFullscreenToolbar() override;
295 bool IsFullscreenWithToolbar() const override;
296 bool ShouldHideFullscreenToolbar() const override;
297 #if defined(OS_WIN) 292 #if defined(OS_WIN)
298 void SetMetroSnapMode(bool enable) override; 293 void SetMetroSnapMode(bool enable) override;
299 bool IsInMetroSnapMode() const override; 294 bool IsInMetroSnapMode() const override;
300 #endif // defined(OS_WIN) 295 #endif // defined(OS_WIN)
301 LocationBar* GetLocationBar() const override; 296 LocationBar* GetLocationBar() const override;
302 void SetFocusToLocationBar(bool select_all) override; 297 void SetFocusToLocationBar(bool select_all) override;
303 void UpdateReloadStopState(bool is_loading, bool force) override; 298 void UpdateReloadStopState(bool is_loading, bool force) override;
304 void UpdateToolbar(content::WebContents* contents) override; 299 void UpdateToolbar(content::WebContents* contents) override;
305 void ResetToolbarTabState(content::WebContents* contents) override; 300 void ResetToolbarTabState(content::WebContents* contents) override;
306 void FocusToolbar() override; 301 void FocusToolbar() override;
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; 709 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_;
715 710
716 SigninViewController signin_view_controller_; 711 SigninViewController signin_view_controller_;
717 712
718 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; 713 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_;
719 714
720 DISALLOW_COPY_AND_ASSIGN(BrowserView); 715 DISALLOW_COPY_AND_ASSIGN(BrowserView);
721 }; 716 };
722 717
723 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ 718 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698