Elim cr-checkbox
[chromium-blink-merge.git] / chrome / browser / chromeos / login / chrome_restart_request.h
blob576b5fa220c8bb8854daf162c334977324414fad
1 // Copyright 2013 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.
5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_CHROME_RESTART_REQUEST_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_CHROME_RESTART_REQUEST_H_
8 #include <string>
10 class GURL;
12 namespace base {
13 class CommandLine;
16 namespace chromeos {
18 // Determines the |command_line| to be used for the OTR process.
19 void GetOffTheRecordCommandLine(const GURL& start_url,
20 bool is_oobe_completed,
21 const base::CommandLine& base_command_line,
22 base::CommandLine* command_line);
24 // Request session manager to restart chrome with a new command line.
25 void RestartChrome(const base::CommandLine& command_line);
27 } // namespace chromeos
29 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_CHROME_RESTART_REQUEST_H_