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

Unified Diff: chrome/renderer/webview_animating_overlay.h

Issue 10855151: Gradient overlay for constrained window (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos Created 8 years, 4 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 | « chrome/renderer/chrome_render_view_observer.cc ('k') | chrome/renderer/webview_animating_overlay.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/webview_animating_overlay.h
diff --git a/chrome/renderer/webview_animating_overlay.h b/chrome/renderer/webview_animating_overlay.h
new file mode 100644
index 0000000000000000000000000000000000000000..b10556417a9f02110f1b2bb0cf83c3508cd65a75
--- /dev/null
+++ b/chrome/renderer/webview_animating_overlay.h
@@ -0,0 +1,53 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_RENDERER_WEBVIEW_ANIMATING_OVERLAY_H_
+#define CHROME_RENDERER_WEBVIEW_ANIMATING_OVERLAY_H_
+
+#include "base/compiler_specific.h"
+#include "third_party/WebKit/Source/WebKit/chromium/public/WebPageOverlay.h"
+#include "ui/base/animation/animation_delegate.h"
+#include "ui/base/animation/linear_animation.h"
+
+namespace content {
+class RenderView;
+}
+
+// This class draws a gradient on a PageOverlay of a WebView. The gradient
+// fades in when shown and fades out when hidden.
+class WebViewAnimatingOverlay : public WebKit::WebPageOverlay,
+ public ui::AnimationDelegate {
+ public:
+ enum State {
+ ANIMATING_IN,
+ VISIBLE,
+ ANIMATING_OUT,
+ HIDDEN
+ };
+
+ explicit WebViewAnimatingOverlay(content::RenderView* render_view);
+ virtual ~WebViewAnimatingOverlay();
+ void Show();
+ void Hide();
+
+ State state() { return state_; }
+
+ // WebKit::WebPageOverlay implementation:
+ virtual void paintPageOverlay(WebKit::WebCanvas* canvas) OVERRIDE;
+
+ // ui::AnimationDelegate implementation:
+ virtual void AnimationEnded(const ui::Animation* animation) OVERRIDE;
+ virtual void AnimationProgressed(const ui::Animation* animation) OVERRIDE;
+
+ private:
+ int GetCurrentAlpha();
+
+ content::RenderView* render_view_;
+ State state_;
+ ui::LinearAnimation animation_;
+
+ DISALLOW_COPY_AND_ASSIGN(WebViewAnimatingOverlay);
+};
+
+#endif // CHROME_RENDERER_WEBVIEW_ANIMATING_OVERLAY_H_
« no previous file with comments | « chrome/renderer/chrome_render_view_observer.cc ('k') | chrome/renderer/webview_animating_overlay.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698