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

Unified Diff: chrome/browser/ui/views/page_info_bubble_view.cc

Issue 10835015: couple minor fixes to PageInfoBubble (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/page_info_bubble_view.cc
diff --git a/chrome/browser/ui/views/page_info_bubble_view.cc b/chrome/browser/ui/views/page_info_bubble_view.cc
index 02fb812fb97745a850f318caeedc77d7cdba924b..bf54ea1c17fcfd14c7a823673ca2987645e1d87a 100644
--- a/chrome/browser/ui/views/page_info_bubble_view.cc
+++ b/chrome/browser/ui/views/page_info_bubble_view.cc
@@ -49,7 +49,7 @@ const int kIconVerticalOffset = -7;
// The duration of the animation that resizes the bubble once the async
// information is provided through the ModelChanged event.
-const int kPageInfoSlideDuration = 1450;
+const int kPageInfoSlideDuration = 250;
// A section contains an image that shows a status (good or bad), a title, an
// optional head-line (in bold) and a description.
@@ -68,9 +68,9 @@ class Section : public views::View,
void SetAnimationStage(double animation_stage);
// views::View methods:
- virtual int GetHeightForWidth(int w);
- virtual void Layout();
- virtual void Paint(gfx::Canvas* canvas);
+ virtual int GetHeightForWidth(int w) OVERRIDE;
+ virtual void Layout() OVERRIDE;
+ virtual void Paint(gfx::Canvas* canvas) OVERRIDE;
// views::LinkListener methods:
virtual void LinkClicked(views::Link* source, int event_flags) OVERRIDE;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698