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

Unified Diff: athena/content/app_activity_unittest.cc

Issue 591693002: Creating PNG images from web content to be used by OverviewMode navigation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
Index: athena/content/app_activity_unittest.cc
diff --git a/athena/content/app_activity_unittest.cc b/athena/content/app_activity_unittest.cc
index f4c77e607765c03832e2a59dbecea5755d0200b8..4a90cd8e2493d9b7aaf1b9bc1b4d241d4141da76 100644
--- a/athena/content/app_activity_unittest.cc
+++ b/athena/content/app_activity_unittest.cc
@@ -79,8 +79,8 @@ class TestAppActivity : public AppActivity {
virtual bool UsesFrame() const OVERRIDE { return true; }
virtual views::View* GetContentsView() OVERRIDE { return view_; }
virtual views::Widget* CreateWidget() OVERRIDE { return NULL; }
- virtual gfx::ImageSkia GetOverviewModeImage() OVERRIDE {
- return gfx::ImageSkia();
+ virtual scoped_ptr<gfx::Image> GetOverviewModeImage() OVERRIDE {
+ return scoped_ptr<gfx::Image>(new gfx::Image());
}
private:

Powered by Google App Engine
This is Rietveld 408576698