summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/webui/options/managed_user_settings_test.cc
blob: 9874bc0be5fb10d1688c7f3c89fd89b8d5ee4f48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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_settings_test.h"

#include "base/command_line.h"
#include "chrome/common/chrome_switches.h"

ManagedUserSettingsTest::ManagedUserSettingsTest() {
}

ManagedUserSettingsTest::~ManagedUserSettingsTest() {
}

void ManagedUserSettingsTest::SetUpCommandLine(CommandLine* command_line) {
  command_line->AppendSwitch(switches::kManaged);
  command_line->AppendSwitch(switches::kEnableManagedUsers);
}