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

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

Issue 67156: Fix regression I introduced where Stop/Go button would toggle state instantly... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 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) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2009 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_VIEWS_FRAME_BROWSER_VIEW_H_ 5 #ifndef CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_
6 #define CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ 6 #define CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_
7 7
8 #include "chrome/browser/browser.h" 8 #include "chrome/browser/browser.h"
9 #include "chrome/browser/browser_window.h" 9 #include "chrome/browser/browser_window.h"
10 #include "chrome/browser/hang_monitor/hung_plugin_action.h" 10 #include "chrome/browser/hang_monitor/hung_plugin_action.h"
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 virtual void SelectedTabToolbarSizeChanged(bool is_animating); 180 virtual void SelectedTabToolbarSizeChanged(bool is_animating);
181 virtual void UpdateTitleBar(); 181 virtual void UpdateTitleBar();
182 virtual void UpdateLoadingAnimations(bool should_animate); 182 virtual void UpdateLoadingAnimations(bool should_animate);
183 virtual void SetStarredState(bool is_starred); 183 virtual void SetStarredState(bool is_starred);
184 virtual gfx::Rect GetNormalBounds() const; 184 virtual gfx::Rect GetNormalBounds() const;
185 virtual bool IsMaximized() const; 185 virtual bool IsMaximized() const;
186 virtual void SetFullscreen(bool fullscreen); 186 virtual void SetFullscreen(bool fullscreen);
187 virtual bool IsFullscreen() const; 187 virtual bool IsFullscreen() const;
188 virtual LocationBar* GetLocationBar() const; 188 virtual LocationBar* GetLocationBar() const;
189 virtual void SetFocusToLocationBar(); 189 virtual void SetFocusToLocationBar();
190 virtual void UpdateStopGoState(bool is_loading); 190 virtual void UpdateStopGoState(bool is_loading, bool force);
191 virtual void UpdateToolbar(TabContents* contents, bool should_restore_state); 191 virtual void UpdateToolbar(TabContents* contents, bool should_restore_state);
192 virtual void FocusToolbar(); 192 virtual void FocusToolbar();
193 virtual void DestroyBrowser(); 193 virtual void DestroyBrowser();
194 virtual bool IsBookmarkBarVisible() const; 194 virtual bool IsBookmarkBarVisible() const;
195 virtual gfx::Rect GetRootWindowResizerRect() const; 195 virtual gfx::Rect GetRootWindowResizerRect() const;
196 virtual void DisableInactiveFrame(); 196 virtual void DisableInactiveFrame();
197 virtual void ToggleBookmarkBar(); 197 virtual void ToggleBookmarkBar();
198 virtual void ShowAboutChromeDialog(); 198 virtual void ShowAboutChromeDialog();
199 virtual void ShowBookmarkManager(); 199 virtual void ShowBookmarkManager();
200 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); 200 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked);
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 // P13N stuff 434 // P13N stuff
435 #ifdef CHROME_PERSONALIZATION 435 #ifdef CHROME_PERSONALIZATION
436 FramePersonalization personalization_; 436 FramePersonalization personalization_;
437 bool personalization_enabled_; 437 bool personalization_enabled_;
438 #endif 438 #endif
439 439
440 DISALLOW_COPY_AND_ASSIGN(BrowserView); 440 DISALLOW_COPY_AND_ASSIGN(BrowserView);
441 }; 441 };
442 442
443 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ 443 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698