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

Unified Diff: chrome/browser/chromeos/login/image_background.h

Issue 658001: Removing some now-unused headers. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 10 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 | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/image_background.h
===================================================================
--- chrome/browser/chromeos/login/image_background.h (revision 39898)
+++ chrome/browser/chromeos/login/image_background.h (working copy)
@@ -1,39 +0,0 @@
-// Copyright (c) 2009 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_BROWSER_CHROMEOS_LOGIN_IMAGE_BACKGROUND_H_
-#define CHROME_BROWSER_CHROMEOS_LOGIN_IMAGE_BACKGROUND_H_
-
-#include "base/basictypes.h"
-#include "views/background.h"
-#include "app/gfx/canvas.h"
-
-namespace gfx {
-class Canvas;
-}
-
-namespace views {
-
-class ImageBackground : public Background {
- public:
- explicit ImageBackground(GdkPixbuf* background_image)
- : background_image_(background_image) {
- }
-
- virtual ~ImageBackground() {}
-
- void Paint(gfx::Canvas* canvas, View* view) const {
- canvas->DrawGdkPixbuf(background_image_, 0, 0);
- }
- private:
- // Background image that is drawn by this background.
- // This class does _not_ take ownership of the image.
- GdkPixbuf* background_image_;
- DISALLOW_COPY_AND_ASSIGN(ImageBackground);
-};
-
-} // namespace views
-
-#endif // CHROME_BROWSER_CHROMEOS_LOGIN_IMAGE_BACKGROUND_H_
-
« no previous file with comments | « no previous file | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698