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

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

Issue 6312156: Change includes of gfx/* to ui/gfx/* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 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
« no previous file with comments | « chrome/browser/ui/views/hung_renderer_view.cc ('k') | chrome/browser/ui/views/info_bubble.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 #include "chrome/browser/ui/views/indexed_db_info_view.h" 5 #include "chrome/browser/ui/views/indexed_db_info_view.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/i18n/time_formatting.h" 9 #include "base/i18n/time_formatting.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
11 #include "gfx/color_utils.h"
12 #include "grit/generated_resources.h" 11 #include "grit/generated_resources.h"
13 #include "ui/base/l10n/l10n_util.h" 12 #include "ui/base/l10n/l10n_util.h"
13 #include "ui/gfx/color_utils.h"
14 #include "views/controls/label.h" 14 #include "views/controls/label.h"
15 #include "views/controls/textfield/textfield.h" 15 #include "views/controls/textfield/textfield.h"
16 #include "views/layout/grid_layout.h" 16 #include "views/layout/grid_layout.h"
17 #include "views/layout/layout_constants.h" 17 #include "views/layout/layout_constants.h"
18 18
19 static const int kIndexedDBInfoViewBorderSize = 1; 19 static const int kIndexedDBInfoViewBorderSize = 1;
20 static const int kIndexedDBInfoViewInsetSize = 3; 20 static const int kIndexedDBInfoViewInsetSize = 3;
21 21
22 /////////////////////////////////////////////////////////////////////////////// 22 ///////////////////////////////////////////////////////////////////////////////
23 // IndexedDBInfoView, public: 23 // IndexedDBInfoView, public:
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 origin_value_field_->SetReadOnly(true); 123 origin_value_field_->SetReadOnly(true);
124 origin_value_field_->RemoveBorder(); 124 origin_value_field_->RemoveBorder();
125 origin_value_field_->SetBackgroundColor(text_area_background); 125 origin_value_field_->SetBackgroundColor(text_area_background);
126 size_value_field_->SetReadOnly(true); 126 size_value_field_->SetReadOnly(true);
127 size_value_field_->RemoveBorder(); 127 size_value_field_->RemoveBorder();
128 size_value_field_->SetBackgroundColor(text_area_background); 128 size_value_field_->SetBackgroundColor(text_area_background);
129 last_modified_value_field_->SetReadOnly(true); 129 last_modified_value_field_->SetReadOnly(true);
130 last_modified_value_field_->RemoveBorder(); 130 last_modified_value_field_->RemoveBorder();
131 last_modified_value_field_->SetBackgroundColor(text_area_background); 131 last_modified_value_field_->SetBackgroundColor(text_area_background);
132 } 132 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/hung_renderer_view.cc ('k') | chrome/browser/ui/views/info_bubble.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698