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

Side by Side Diff: chrome/browser/dom_ui/passwords_exceptions_handler.cc

Issue 3061049: Start passwords exceptions (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 4 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/dom_ui/passwords_exceptions_handler.h"
6
7 #include "app/l10n_util.h"
8 #include "base/callback.h"
9 #include "base/values.h"
10 #include "chrome/browser/profile.h"
11 #include "chrome/common/url_constants.h"
12 #include "grit/generated_resources.h"
13 #include "grit/locale_settings.h"
14
15 PasswordsExceptionsHandler::PasswordsExceptionsHandler() {
16 }
17
18 PasswordsExceptionsHandler::~PasswordsExceptionsHandler() {
19 }
20
21 void PasswordsExceptionsHandler::GetLocalizedValues(
22 DictionaryValue* localized_strings) {
23 DCHECK(localized_strings);
24
25 localized_strings->SetString(L"passwordsExceptionsTitle",
26 l10n_util::GetString(IDS_PASSWORDS_EXCEPTIONS_WINDOW_TITLE));
27 }
28
29 void PasswordsExceptionsHandler::RegisterMessages() {
30 }
OLDNEW
« no previous file with comments | « chrome/browser/dom_ui/passwords_exceptions_handler.h ('k') | chrome/browser/resources/options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698