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

Side by Side Diff: chrome/browser/ui/views/options/languages_page_view.cc

Issue 6257017: views: Move standard_layout.h into the layout directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win Created 9 years, 11 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) 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 <windows.h> 5 #include <windows.h>
6 #include <shlobj.h> 6 #include <shlobj.h>
7 #include <vsstyle.h> 7 #include <vsstyle.h>
8 #include <vssym32.h> 8 #include <vssym32.h>
9 9
10 #include "chrome/browser/ui/views/options/languages_page_view.h" 10 #include "chrome/browser/ui/views/options/languages_page_view.h"
(...skipping 19 matching lines...) Expand all
30 #include "grit/generated_resources.h" 30 #include "grit/generated_resources.h"
31 #include "grit/theme_resources.h" 31 #include "grit/theme_resources.h"
32 #include "third_party/skia/include/core/SkBitmap.h" 32 #include "third_party/skia/include/core/SkBitmap.h"
33 #include "ui/base/l10n/l10n_util.h" 33 #include "ui/base/l10n/l10n_util.h"
34 #include "ui/base/resource/resource_bundle.h" 34 #include "ui/base/resource/resource_bundle.h"
35 #include "unicode/uloc.h" 35 #include "unicode/uloc.h"
36 #include "views/controls/button/radio_button.h" 36 #include "views/controls/button/radio_button.h"
37 #include "views/controls/tabbed_pane/tabbed_pane.h" 37 #include "views/controls/tabbed_pane/tabbed_pane.h"
38 #include "views/controls/table/table_view.h" 38 #include "views/controls/table/table_view.h"
39 #include "views/grid_layout.h" 39 #include "views/grid_layout.h"
40 #include "views/standard_layout.h" 40 #include "views/layout/layout_constants.h"
41 #include "views/widget/widget.h" 41 #include "views/widget/widget.h"
42 #include "views/window/window.h" 42 #include "views/window/window.h"
43 43
44 /////////////////////////////////////////////////////////////////////////////// 44 ///////////////////////////////////////////////////////////////////////////////
45 // AddLanguageWindowView 45 // AddLanguageWindowView
46 // 46 //
47 // This opens another window from where a new accept language can be selected. 47 // This opens another window from where a new accept language can be selected.
48 // 48 //
49 class AddLanguageWindowView : public views::View, 49 class AddLanguageWindowView : public views::View,
50 public views::Combobox::Listener, 50 public views::Combobox::Listener,
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 } 579 }
580 580
581 if (enable_spellcheck_checkbox_clicked_) 581 if (enable_spellcheck_checkbox_clicked_)
582 enable_spellcheck_.SetValue(enable_spellchecking_checkbox_->checked()); 582 enable_spellcheck_.SetValue(enable_spellchecking_checkbox_->checked());
583 583
584 if (enable_autospellcorrect_checkbox_clicked_) { 584 if (enable_autospellcorrect_checkbox_clicked_) {
585 enable_autospellcorrect_.SetValue( 585 enable_autospellcorrect_.SetValue(
586 enable_autospellcorrect_checkbox_->checked()); 586 enable_autospellcorrect_checkbox_->checked());
587 } 587 }
588 } 588 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/options/general_page_view.cc ('k') | chrome/browser/ui/views/options/managed_prefs_banner_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698