diff options
Diffstat (limited to 'chrome/browser/views/frame/browser_view.h')
-rw-r--r-- | chrome/browser/views/frame/browser_view.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/chrome/browser/views/frame/browser_view.h b/chrome/browser/views/frame/browser_view.h index fde7d12..bf6a41b 100644 --- a/chrome/browser/views/frame/browser_view.h +++ b/chrome/browser/views/frame/browser_view.h @@ -151,7 +151,7 @@ class BrowserView : public BrowserWindow, virtual StatusBubble* GetStatusBubble(); virtual void SelectedTabToolbarSizeChanged(bool is_animating); virtual void UpdateTitleBar(); - virtual void ValidateThrobber(); + virtual void UpdateLoadingAnimations(bool should_animate); virtual gfx::Rect GetNormalBounds() const; virtual bool IsMaximized(); virtual ToolbarStarToggle* GetStarButton() const; @@ -308,6 +308,9 @@ class BrowserView : public BrowserWindow, // Retrieves the command id for the specified Windows app command. int GetCommandIDForAppCommandID(int app_command_id) const; + // Callback for the loading animation(s) associated with this view. + void LoadingAnimationCallback(); + // Initialize the hung plugin detector. void InitHangMonitor(); @@ -385,6 +388,9 @@ class BrowserView : public BrowserWindow, // plugin window. HungPluginAction hung_plugin_action_; + // The timer used to update frames for the Loading Animation. + base::RepeatingTimer<BrowserView> loading_animation_timer_; + // P13N stuff #ifdef CHROME_PERSONALIZATION FramePersonalization personalization_; |