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

Side by Side Diff: chrome/browser/views/about_chrome_view.cc

Issue 1705009: Changing linux platform for chromeos. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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/about_chrome_view.h" 5 #include "chrome/browser/views/about_chrome_view.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 "base/callback.h" 9 #include "base/callback.h"
10 #include "base/file_version_info.h" 10 #include "base/file_version_info.h"
11 #include "base/i18n/rtl.h" 11 #include "base/i18n/rtl.h"
12 #include "base/utf_string_conversions.h" 12 #include "base/utf_string_conversions.h"
13 #include "chrome/app/chrome_version_info.h" 13 #include "chrome/app/chrome_version_info.h"
14 #include "chrome/browser/browser_list.h" 14 #include "chrome/browser/browser_list.h"
15 #include "chrome/browser/metrics/user_metrics.h" 15 #include "chrome/browser/metrics/user_metrics.h"
16 #include "chrome/browser/platform_util.h"
16 #include "chrome/browser/views/accessible_view_helper.h" 17 #include "chrome/browser/views/accessible_view_helper.h"
17 #include "chrome/common/chrome_constants.h" 18 #include "chrome/common/chrome_constants.h"
18 #include "chrome/common/platform_util.h"
19 #include "chrome/common/url_constants.h" 19 #include "chrome/common/url_constants.h"
20 #include "gfx/canvas.h" 20 #include "gfx/canvas.h"
21 #include "grit/chromium_strings.h" 21 #include "grit/chromium_strings.h"
22 #include "grit/generated_resources.h" 22 #include "grit/generated_resources.h"
23 #include "grit/locale_settings.h" 23 #include "grit/locale_settings.h"
24 #include "grit/theme_resources.h" 24 #include "grit/theme_resources.h"
25 #include "views/controls/textfield/textfield.h" 25 #include "views/controls/textfield/textfield.h"
26 #include "views/controls/throbber.h" 26 #include "views/controls/throbber.h"
27 #include "views/standard_layout.h" 27 #include "views/standard_layout.h"
28 #include "views/view_text_utils.h" 28 #include "views/view_text_utils.h"
(...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after
798 View* parent = GetParent(); 798 View* parent = GetParent();
799 parent->Layout(); 799 parent->Layout();
800 800
801 // Check button may have appeared/disappeared. We cannot call this during 801 // Check button may have appeared/disappeared. We cannot call this during
802 // ViewHierarchyChanged because the |window()| pointer hasn't been set yet. 802 // ViewHierarchyChanged because the |window()| pointer hasn't been set yet.
803 if (window()) 803 if (window())
804 GetDialogClientView()->UpdateDialogButtons(); 804 GetDialogClientView()->UpdateDialogButtons();
805 } 805 }
806 806
807 #endif 807 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698