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

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

Issue 3044047: DOMUI: Base framework for the AutoFill page. (Closed)
Patch Set: Fix missing handler. 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
« no previous file with comments | « chrome/browser/dom_ui/autofill_options_handler.h ('k') | chrome/browser/dom_ui/options_ui.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/autofill_options_handler.h"
6
7 #include "app/l10n_util.h"
8 #include "base/logging.h"
9 #include "base/values.h"
10 #include "grit/generated_resources.h"
11
12 AutoFillOptionsHandler::AutoFillOptionsHandler() {
13 }
14
15 AutoFillOptionsHandler::~AutoFillOptionsHandler() {
16 }
17
18 void AutoFillOptionsHandler::GetLocalizedValues(
19 DictionaryValue* localized_strings) {
20 DCHECK(localized_strings);
21
22 localized_strings->SetString(L"autoFillOptionsTitle",
23 l10n_util::GetString(IDS_AUTOFILL_OPTIONS_TITLE));
24 }
25
26 void AutoFillOptionsHandler::RegisterMessages() {
27 }
OLDNEW
« no previous file with comments | « chrome/browser/dom_ui/autofill_options_handler.h ('k') | chrome/browser/dom_ui/options_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698