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

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

Issue 12803011: Add BaseWindow::GetContentBounds() and use in WindowController::CreateWindowValue() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix osx build Created 7 years, 9 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) 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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 virtual StatusBubble* GetStatusBubble() OVERRIDE; 267 virtual StatusBubble* GetStatusBubble() OVERRIDE;
268 virtual void UpdateTitleBar() OVERRIDE; 268 virtual void UpdateTitleBar() OVERRIDE;
269 virtual void BookmarkBarStateChanged( 269 virtual void BookmarkBarStateChanged(
270 BookmarkBar::AnimateChangeType change_type) OVERRIDE; 270 BookmarkBar::AnimateChangeType change_type) OVERRIDE;
271 virtual void UpdateDevTools() OVERRIDE; 271 virtual void UpdateDevTools() OVERRIDE;
272 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE; 272 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE;
273 virtual void SetStarredState(bool is_starred) OVERRIDE; 273 virtual void SetStarredState(bool is_starred) OVERRIDE;
274 virtual void ZoomChangedForActiveTab(bool can_show_bubble) OVERRIDE; 274 virtual void ZoomChangedForActiveTab(bool can_show_bubble) OVERRIDE;
275 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; 275 virtual gfx::Rect GetRestoredBounds() const OVERRIDE;
276 virtual gfx::Rect GetBounds() const OVERRIDE; 276 virtual gfx::Rect GetBounds() const OVERRIDE;
277 virtual gfx::Rect GetContentBounds() const OVERRIDE;
277 virtual bool IsMaximized() const OVERRIDE; 278 virtual bool IsMaximized() const OVERRIDE;
278 virtual bool IsMinimized() const OVERRIDE; 279 virtual bool IsMinimized() const OVERRIDE;
279 virtual void Maximize() OVERRIDE; 280 virtual void Maximize() OVERRIDE;
280 virtual void Minimize() OVERRIDE; 281 virtual void Minimize() OVERRIDE;
281 virtual void Restore() OVERRIDE; 282 virtual void Restore() OVERRIDE;
282 virtual void EnterFullscreen( 283 virtual void EnterFullscreen(
283 const GURL& url, FullscreenExitBubbleType bubble_type) OVERRIDE; 284 const GURL& url, FullscreenExitBubbleType bubble_type) OVERRIDE;
284 virtual void ExitFullscreen() OVERRIDE; 285 virtual void ExitFullscreen() OVERRIDE;
285 virtual void UpdateFullscreenExitBubbleContent( 286 virtual void UpdateFullscreenExitBubbleContent(
286 const GURL& url, 287 const GURL& url,
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 gfx::ScopedSysColorChangeListener color_change_listener_; 755 gfx::ScopedSysColorChangeListener color_change_listener_;
755 756
756 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; 757 scoped_ptr<InstantOverlayControllerViews> overlay_controller_;
757 758
758 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; 759 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_;
759 760
760 DISALLOW_COPY_AND_ASSIGN(BrowserView); 761 DISALLOW_COPY_AND_ASSIGN(BrowserView);
761 }; 762 };
762 763
763 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ 764 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/extensions/native_app_window_views.cc ('k') | chrome/browser/ui/views/frame/browser_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698