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

Side by Side Diff: ui/views/desktop/desktop_background.h

Issue 8598024: Now that we are doing a hard-cut-over to Aura, remove a bunch of *Views based classes that are ob... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/views/aura_desktop/aura_desktop_main.cc ('k') | ui/views/desktop/desktop_background.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef UI_VIEWS_DESKTOP_DESKTOP_BACKGROUND_H_
6 #define UI_VIEWS_DESKTOP_DESKTOP_BACKGROUND_H_
7
8 #include "base/compiler_specific.h"
9 #include "views/background.h"
10
11 namespace views {
12 namespace desktop {
13
14 class DesktopBackground : public Background {
15 public:
16 DesktopBackground();
17 virtual ~DesktopBackground();
18
19 private:
20 // Overridden from Background:
21 virtual void Paint(gfx::Canvas* canvas, View* view) const OVERRIDE;
22
23 DISALLOW_COPY_AND_ASSIGN(DesktopBackground);
24 };
25
26 } // namespace desktop
27 } // namespace views
28
29 #endif // UI_VIEWS_DESKTOP_DESKTOP_BACKGROUND_H_
OLDNEW
« no previous file with comments | « ui/views/aura_desktop/aura_desktop_main.cc ('k') | ui/views/desktop/desktop_background.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698