summaryrefslogtreecommitdiffstats
path: root/mojo/runner/scoped_user_data_dir.cc
blob: 8709475b6dbdd451a383894f2ed2e729fa29f525 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright 2015 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 "mojo/runner/scoped_user_data_dir.h"

#include "base/command_line.h"
#include "base/logging.h"
#include "mojo/runner/switches.h"

namespace mojo {
namespace runner {

ScopedUserDataDir::ScopedUserDataDir() {
  base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
  if (!command_line->HasSwitch(switches::kUseTemporaryUserDataDir))
    return;

  if (command_line->HasSwitch(switches::kUserDataDir)) {
    // User should not specify a --user-data-dir manually when using
    // --use-temporary-user-data-dir. The point of the flag is to let the
    // mojo runner process manage the lifetime of the user data dir.
    LOG(ERROR) << "Ignoring request to --use-temporary-user-data-dir because "
               << "--user-data-dir was also specified.";
    return;
  }

  if (!temp_dir_.CreateUniqueTempDir()) {
    LOG(ERROR) << "Failed to create a temporary user data dir.";
    return;
  }

  command_line->AppendSwitchPath(switches::kUserDataDir, temp_dir_.path());
}

ScopedUserDataDir::~ScopedUserDataDir() {
}

}  // namespace runner
}  // namespace mojo