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

Side by Side Diff: ui/views/painter.h

Issue 8771006: views: Move the remaining file from views/ to ui/views/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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/paint_lock.cc ('k') | ui/views/painter.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef VIEWS_PAINTER_H_ 5 #ifndef UI_VIEWS_PAINTER_H_
6 #define VIEWS_PAINTER_H_ 6 #define UI_VIEWS_PAINTER_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "third_party/skia/include/core/SkColor.h" 11 #include "third_party/skia/include/core/SkColor.h"
12 #include "views/views_export.h" 12 #include "ui/views/views_export.h"
13 13
14 namespace gfx { 14 namespace gfx {
15 class Canvas; 15 class Canvas;
16 class Insets; 16 class Insets;
17 } 17 }
18 class SkBitmap; 18 class SkBitmap;
19 19
20 namespace views { 20 namespace views {
21 21
22 // Painter, as the name implies, is responsible for painting in a particular 22 // Painter, as the name implies, is responsible for painting in a particular
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 // The height. 78 // The height.
79 int height_; 79 int height_;
80 // NOTE: the images are owned by ResourceBundle. Don't free them. 80 // NOTE: the images are owned by ResourceBundle. Don't free them.
81 SkBitmap* images_[3]; 81 SkBitmap* images_[3];
82 82
83 DISALLOW_COPY_AND_ASSIGN(HorizontalPainter); 83 DISALLOW_COPY_AND_ASSIGN(HorizontalPainter);
84 }; 84 };
85 85
86 } // namespace views 86 } // namespace views
87 87
88 #endif // VIEWS_PAINTER_H_ 88 #endif // UI_VIEWS_PAINTER_H_
OLDNEW
« no previous file with comments | « ui/views/paint_lock.cc ('k') | ui/views/painter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698