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

Unified Diff: chrome/browser/ui/webui/options/managed_user_set_passphrase_test.cc

Issue 11783008: Add a lock to the managed user settings page and require authentication for unlocking. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adressed comments regarding the set passphrase dialog. Created 7 years, 10 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/ui/webui/options/managed_user_set_passphrase_test.cc
diff --git a/chrome/browser/ui/webui/options/managed_user_set_passphrase_test.cc b/chrome/browser/ui/webui/options/managed_user_set_passphrase_test.cc
new file mode 100644
index 0000000000000000000000000000000000000000..04a1b72c523c2d235fd3412aaa20d52a05d03d54
--- /dev/null
+++ b/chrome/browser/ui/webui/options/managed_user_set_passphrase_test.cc
@@ -0,0 +1,19 @@
+// Copyright (c) 2013 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.
+
+#include "chrome/browser/ui/webui/options/managed_user_set_passphrase_test.h"
+
+#include "base/command_line.h"
+#include "chrome/common/chrome_switches.h"
+
+ManagedUserSetPassphraseTest::ManagedUserSetPassphraseTest() {
+}
+
+ManagedUserSetPassphraseTest::~ManagedUserSetPassphraseTest() {
+}
+
+void ManagedUserSetPassphraseTest::SetUpCommandLine(CommandLine* command_line) {
+ command_line->AppendSwitch(switches::kManaged);
+ command_line->AppendSwitch(switches::kEnableManagedUsers);
+}

Powered by Google App Engine
This is Rietveld 408576698