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

Side by Side Diff: chrome/browser/views/infobars/infobar_button_border.cc

Issue 2953005: Clean up app_resources.grd:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 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 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 #include "chrome/browser/views/infobars/infobar_button_border.h" 5 #include "chrome/browser/views/infobars/infobar_button_border.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
8 #include "app/resource_bundle.h" 8 #include "app/resource_bundle.h"
9 #include "gfx/canvas.h" 9 #include "gfx/canvas.h"
10 #include "grit/app_resources.h" 10 #include "grit/theme_resources.h"
11 #include "views/controls/button/text_button.h" 11 #include "views/controls/button/text_button.h"
12 12
13 // Preferred padding between text and edge 13 // Preferred padding between text and edge
14 static const int kPreferredPaddingHorizontal = 6; 14 static const int kPreferredPaddingHorizontal = 6;
15 static const int kPreferredPaddingVertical = 5; 15 static const int kPreferredPaddingVertical = 5;
16 16
17 // InfoBarButtonBorder, public: ---------------------------------------------- 17 // InfoBarButtonBorder, public: ----------------------------------------------
18 18
19 InfoBarButtonBorder::InfoBarButtonBorder() { 19 InfoBarButtonBorder::InfoBarButtonBorder() {
20 ResourceBundle& rb = ResourceBundle::GetSharedInstance(); 20 ResourceBundle& rb = ResourceBundle::GetSharedInstance();
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 bounds.height() - set->bottom->height(), 133 bounds.height() - set->bottom->height(),
134 bounds.width() - set->bottom_right->width() - 134 bounds.width() - set->bottom_right->width() -
135 set->bottom_left->width(), 135 set->bottom_left->width(),
136 set->bottom->height(), false); 136 set->bottom->height(), false);
137 137
138 // Draw bottom right image. 138 // Draw bottom right image.
139 canvas->DrawBitmapInt(*set->bottom_right, 139 canvas->DrawBitmapInt(*set->bottom_right,
140 bounds.width() - set->bottom_right->width(), 140 bounds.width() - set->bottom_right->width(),
141 bounds.height() - set->bottom_right->height()); 141 bounds.height() - set->bottom_right->height());
142 } 142 }
OLDNEW
« no previous file with comments | « chrome/browser/views/autofill_profiles_view_win.cc ('k') | chrome/browser/views/infobars/translate_infobar_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698