diff options
Diffstat (limited to 'chrome/browser/tab_contents/tab_contents.h')
-rw-r--r-- | chrome/browser/tab_contents/tab_contents.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/tab_contents/tab_contents.h b/chrome/browser/tab_contents/tab_contents.h index 345bca2..3b88446 100644 --- a/chrome/browser/tab_contents/tab_contents.h +++ b/chrome/browser/tab_contents/tab_contents.h @@ -719,6 +719,12 @@ class TabContents : public PageNavigator, // Gets the zoom percent for this tab. int GetZoomPercent(bool* enable_increment, bool* enable_decrement); + // Shows a fade effect over this tab contents. Repeated calls will be ignored + // until the fade is canceled. + void FadeForInstant(); + // Immediately removes the fade. + void CancelInstantFade(); + // Gets the minimum/maximum zoom percent. int minimum_zoom_percent() const { return minimum_zoom_percent_; } int maximum_zoom_percent() const { return maximum_zoom_percent_; } |