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

Unified Diff: chrome/browser/resources/options/passwords_exceptions.js

Issue 3061049: Start passwords exceptions (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/passwords_exceptions.js
diff --git a/chrome/browser/resources/options/passwords_exceptions.js b/chrome/browser/resources/options/passwords_exceptions.js
new file mode 100644
index 0000000000000000000000000000000000000000..bf5b8676c8eee1218a9dc9e22dab61e475d024ed
--- /dev/null
+++ b/chrome/browser/resources/options/passwords_exceptions.js
@@ -0,0 +1,40 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+cr.define('options', function() {
+
+ var OptionsPage = options.OptionsPage;
+
+ /////////////////////////////////////////////////////////////////////////////
+ // PasswordsExceptions class:
+
+ /**
+ * Encapsulated handling of password and exceptions page.
+ * @constructor
+ */
+ function PasswordsExceptions() {
+ OptionsPage.call(this, 'passwordsExceptions',
+ templateData.passwordsExceptionsTitle,
+ 'passwordsExceptionsPage');
+ }
+
+ cr.addSingletonGetter(PasswordsExceptions);
+
+ PasswordsExceptions.prototype = {
+ __proto__: OptionsPage.prototype,
+
+ initializePage: function() {
+ OptionsPage.prototype.initializePage.call(this);
+
+ // TODO(sargrass): Add initialization here.
+ }
+ };
+
+ // Export
+ return {
+ PasswordsExceptions: PasswordsExceptions
+ };
+
+});
+
« no previous file with comments | « chrome/browser/resources/options/passwords_exceptions.html ('k') | chrome/browser/resources/options/personal_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698