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

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

Issue 10444040: Tracks changes to zoom icon and zoom percentage. Notifies browser window if the icon should be chan… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 7 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 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE; 226 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE;
227 virtual StatusBubble* GetStatusBubble() OVERRIDE; 227 virtual StatusBubble* GetStatusBubble() OVERRIDE;
228 virtual void ToolbarSizeChanged(bool is_animating) OVERRIDE; 228 virtual void ToolbarSizeChanged(bool is_animating) OVERRIDE;
229 virtual void UpdateTitleBar() OVERRIDE; 229 virtual void UpdateTitleBar() OVERRIDE;
230 virtual void BookmarkBarStateChanged( 230 virtual void BookmarkBarStateChanged(
231 BookmarkBar::AnimateChangeType change_type) OVERRIDE; 231 BookmarkBar::AnimateChangeType change_type) OVERRIDE;
232 virtual void UpdateDevTools() OVERRIDE; 232 virtual void UpdateDevTools() OVERRIDE;
233 virtual void SetDevToolsDockSide(DevToolsDockSide side) OVERRIDE; 233 virtual void SetDevToolsDockSide(DevToolsDockSide side) OVERRIDE;
234 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE; 234 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE;
235 virtual void SetStarredState(bool is_starred) OVERRIDE; 235 virtual void SetStarredState(bool is_starred) OVERRIDE;
236 virtual void SetZoomIconState(ZoomTabHelper::ZoomIconState state,
237 int zoomPercent) OVERRIDE;
238 virtual void ShowZoomBubble(int zoomPercent) OVERRIDE;
236 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; 239 virtual gfx::Rect GetRestoredBounds() const OVERRIDE;
237 virtual gfx::Rect GetBounds() const OVERRIDE; 240 virtual gfx::Rect GetBounds() const OVERRIDE;
238 virtual bool IsMaximized() const OVERRIDE; 241 virtual bool IsMaximized() const OVERRIDE;
239 virtual bool IsMinimized() const OVERRIDE; 242 virtual bool IsMinimized() const OVERRIDE;
240 virtual void Maximize() OVERRIDE; 243 virtual void Maximize() OVERRIDE;
241 virtual void Minimize() OVERRIDE; 244 virtual void Minimize() OVERRIDE;
242 virtual void Restore() OVERRIDE; 245 virtual void Restore() OVERRIDE;
243 virtual void EnterFullscreen( 246 virtual void EnterFullscreen(
244 const GURL& url, FullscreenExitBubbleType bubble_type) OVERRIDE; 247 const GURL& url, FullscreenExitBubbleType bubble_type) OVERRIDE;
245 virtual void ExitFullscreen() OVERRIDE; 248 virtual void ExitFullscreen() OVERRIDE;
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
674 bool force_location_bar_focus_; 677 bool force_location_bar_focus_;
675 678
676 PendingFullscreenRequest fullscreen_request_; 679 PendingFullscreenRequest fullscreen_request_;
677 680
678 gfx::ScopedSysColorChangeListener color_change_listener_; 681 gfx::ScopedSysColorChangeListener color_change_listener_;
679 682
680 DISALLOW_COPY_AND_ASSIGN(BrowserView); 683 DISALLOW_COPY_AND_ASSIGN(BrowserView);
681 }; 684 };
682 685
683 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ 686 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698