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

Side by Side Diff: chrome/browser/chromeos/login/rounded_view.h

Issue 5709001: Place the spinner in the right corner of the controls window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/browser/chromeos/login
Patch Set: Merged with trunk. Created 10 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
OLDNEW
1 // Copyright (c) 2010 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
1 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_VIEW_FILTER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_VIEW_FILTER_H_
2 #define CHROME_BROWSER_CHROMEOS_LOGIN_VIEW_FILTER_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_VIEW_FILTER_H_
3 7
4 #include "gfx/canvas.h" 8 #include "gfx/canvas.h"
5 #include "gfx/canvas_skia.h" 9 #include "gfx/canvas_skia.h"
6 #include "gfx/rect.h" 10 #include "gfx/rect.h"
7 11
8 namespace chromeos { 12 namespace chromeos {
9 13
10 namespace rounded_view { 14 namespace rounded_view {
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 // Draw outer frame. 105 // Draw outer frame.
102 view_rect.inset(-rounded_view::kStrokeWidth, -rounded_view::kStrokeWidth); 106 view_rect.inset(-rounded_view::kStrokeWidth, -rounded_view::kStrokeWidth);
103 paint.setColor(rounded_view::kOuterFrameColor); 107 paint.setColor(rounded_view::kOuterFrameColor);
104 canvas->AsCanvasSkia()->drawRoundRect(view_rect, rounded_view::kCornerRadius, 108 canvas->AsCanvasSkia()->drawRoundRect(view_rect, rounded_view::kCornerRadius,
105 rounded_view::kCornerRadius, paint); 109 rounded_view::kCornerRadius, paint);
106 } 110 }
107 111
108 } 112 }
109 113
110 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_VIEW_FILTER_H_ 114 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_VIEW_FILTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698