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

Side by Side Diff: chrome/browser/ui/views/web_intent_picker_views.cc

Issue 10756018: Merge grd files in ui/resources and chrome/app/theme (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, *_standard.rc Created 8 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 <algorithm> 5 #include <algorithm>
6 #include <vector> 6 #include <vector>
7 7
8 #include "base/memory/scoped_vector.h" 8 #include "base/memory/scoped_vector.h"
9 #include "base/time.h" 9 #include "base/time.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
(...skipping 10 matching lines...) Expand all
21 #include "chrome/browser/ui/views/location_bar/location_icon_view.h" 21 #include "chrome/browser/ui/views/location_bar/location_icon_view.h"
22 #include "chrome/browser/ui/views/toolbar_view.h" 22 #include "chrome/browser/ui/views/toolbar_view.h"
23 #include "chrome/common/extensions/extension_constants.h" 23 #include "chrome/common/extensions/extension_constants.h"
24 #include "content/public/browser/web_contents.h" 24 #include "content/public/browser/web_contents.h"
25 #include "content/public/browser/web_contents_view.h" 25 #include "content/public/browser/web_contents_view.h"
26 #include "grit/chromium_strings.h" 26 #include "grit/chromium_strings.h"
27 #include "grit/generated_resources.h" 27 #include "grit/generated_resources.h"
28 #include "grit/google_chrome_strings.h" 28 #include "grit/google_chrome_strings.h"
29 #include "grit/theme_resources.h" 29 #include "grit/theme_resources.h"
30 #include "grit/ui_resources.h" 30 #include "grit/ui_resources.h"
31 #include "grit/ui_resources_standard.h"
32 #include "ipc/ipc_message.h" 31 #include "ipc/ipc_message.h"
33 #include "third_party/skia/include/core/SkColor.h" 32 #include "third_party/skia/include/core/SkColor.h"
34 #include "ui/base/l10n/l10n_util.h" 33 #include "ui/base/l10n/l10n_util.h"
35 #include "ui/base/resource/resource_bundle.h" 34 #include "ui/base/resource/resource_bundle.h"
36 #include "ui/base/text/text_elider.h" 35 #include "ui/base/text/text_elider.h"
37 #include "ui/gfx/canvas.h" 36 #include "ui/gfx/canvas.h"
38 #include "ui/gfx/image/image.h" 37 #include "ui/gfx/image/image.h"
39 #include "ui/views/border.h" 38 #include "ui/views/border.h"
40 #include "ui/views/controls/button/image_button.h" 39 #include "ui/views/controls/button/image_button.h"
41 #include "ui/views/controls/button/text_button.h" 40 #include "ui/views/controls/button/text_button.h"
(...skipping 1122 matching lines...) Expand 10 before | Expand all | Expand 10 after
1164 views::ImageButton* close_button = new views::ImageButton(this); 1163 views::ImageButton* close_button = new views::ImageButton(this);
1165 close_button->SetImage(views::CustomButton::BS_NORMAL, 1164 close_button->SetImage(views::CustomButton::BS_NORMAL,
1166 rb.GetImageSkiaNamed(IDR_CLOSE_BAR)); 1165 rb.GetImageSkiaNamed(IDR_CLOSE_BAR));
1167 close_button->SetImage(views::CustomButton::BS_HOT, 1166 close_button->SetImage(views::CustomButton::BS_HOT,
1168 rb.GetImageSkiaNamed(IDR_CLOSE_BAR_H)); 1167 rb.GetImageSkiaNamed(IDR_CLOSE_BAR_H));
1169 close_button->SetImage(views::CustomButton::BS_PUSHED, 1168 close_button->SetImage(views::CustomButton::BS_PUSHED,
1170 rb.GetImageSkiaNamed(IDR_CLOSE_BAR_P)); 1169 rb.GetImageSkiaNamed(IDR_CLOSE_BAR_P));
1171 return close_button; 1170 return close_button;
1172 } 1171 }
1173 #endif 1172 #endif
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/toolbar_view.cc ('k') | chrome/browser/ui/views/website_settings/website_settings_popup_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698