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

Side by Side Diff: chrome/browser/dom_ui/options/advanced_options_handler.cc

Issue 5649002: DOMUI Settings: UTH: Fix up Downloads section (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years 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) 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/dom_ui/options/advanced_options_handler.h" 5 #include "chrome/browser/dom_ui/options/advanced_options_handler.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/callback.h" 9 #include "base/callback.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 l10n_util::GetStringUTF16(IDS_OPTIONS_DOWNLOADLOCATION_BROWSE_BUTTON)); 69 l10n_util::GetStringUTF16(IDS_OPTIONS_DOWNLOADLOCATION_BROWSE_BUTTON));
70 localized_strings->SetString("downloadLocationBrowseTitle", 70 localized_strings->SetString("downloadLocationBrowseTitle",
71 l10n_util::GetStringUTF16(IDS_OPTIONS_DOWNLOADLOCATION_BROWSE_TITLE)); 71 l10n_util::GetStringUTF16(IDS_OPTIONS_DOWNLOADLOCATION_BROWSE_TITLE));
72 localized_strings->SetString("downloadLocationBrowseWindowTitle", 72 localized_strings->SetString("downloadLocationBrowseWindowTitle",
73 l10n_util::GetStringUTF16( 73 l10n_util::GetStringUTF16(
74 IDS_OPTIONS_DOWNLOADLOCATION_BROWSE_WINDOW_TITLE)); 74 IDS_OPTIONS_DOWNLOADLOCATION_BROWSE_WINDOW_TITLE));
75 localized_strings->SetString("downloadLocationAskForSaveLocation", 75 localized_strings->SetString("downloadLocationAskForSaveLocation",
76 l10n_util::GetStringUTF16( 76 l10n_util::GetStringUTF16(
77 IDS_OPTIONS_DOWNLOADLOCATION_ASKFORSAVELOCATION)); 77 IDS_OPTIONS_DOWNLOADLOCATION_ASKFORSAVELOCATION));
78 localized_strings->SetString("autoOpenFileTypesInfo", 78 localized_strings->SetString("autoOpenFileTypesInfo",
79 l10n_util::GetStringUTF16(IDS_OPTIONS_AUTOOPENFILETYPES_INFO)); 79 l10n_util::GetStringUTF16(IDS_OPTIONS_OPEN_FILE_TYPES_AUTOMATICALLY));
80 localized_strings->SetString("autoOpenFileTypesResetToDefault", 80 localized_strings->SetString("autoOpenFileTypesResetToDefault",
81 l10n_util::GetStringUTF16(IDS_OPTIONS_AUTOOPENFILETYPES_RESETTODEFAULT)); 81 l10n_util::GetStringUTF16(IDS_OPTIONS_AUTOOPENFILETYPES_RESETTODEFAULT));
82 localized_strings->SetString("gearSettingsGroupName", 82 localized_strings->SetString("gearSettingsGroupName",
83 l10n_util::GetStringUTF16(IDS_OPTIONS_GEARSSETTINGS_GROUP_NAME)); 83 l10n_util::GetStringUTF16(IDS_OPTIONS_GEARSSETTINGS_GROUP_NAME));
84 localized_strings->SetString("gearSettingsConfigureGearsButton", 84 localized_strings->SetString("gearSettingsConfigureGearsButton",
85 l10n_util::GetStringUTF16( 85 l10n_util::GetStringUTF16(
86 IDS_OPTIONS_GEARSSETTINGS_CONFIGUREGEARS_BUTTON)); 86 IDS_OPTIONS_GEARSSETTINGS_CONFIGUREGEARS_BUTTON));
87 localized_strings->SetString("translateEnableTranslate", 87 localized_strings->SetString("translateEnableTranslate",
88 l10n_util::GetStringUTF16(IDS_OPTIONS_TRANSLATE_ENABLE_TRANSLATE)); 88 l10n_util::GetStringUTF16(IDS_OPTIONS_TRANSLATE_ENABLE_TRANSLATE));
89 localized_strings->SetString("certificatesManageButton", 89 localized_strings->SetString("certificatesManageButton",
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 FundamentalValue useSSL3Value(useSSL3Setting); 561 FundamentalValue useSSL3Value(useSSL3Setting);
562 dom_ui_->CallJavascriptFunction( 562 dom_ui_->CallJavascriptFunction(
563 L"options.AdvancedOptions.SetUseSSL3CheckboxState", 563 L"options.AdvancedOptions.SetUseSSL3CheckboxState",
564 useSSL3Value, disabledValue); 564 useSSL3Value, disabledValue);
565 FundamentalValue useTLS1Value(useTLS1Setting); 565 FundamentalValue useTLS1Value(useTLS1Setting);
566 dom_ui_->CallJavascriptFunction( 566 dom_ui_->CallJavascriptFunction(
567 L"options.AdvancedOptions.SetUseTLS1CheckboxState", 567 L"options.AdvancedOptions.SetUseTLS1CheckboxState",
568 useTLS1Value, disabledValue); 568 useTLS1Value, disabledValue);
569 } 569 }
570 #endif 570 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698