blob: 723bb773aa1d24d0e661355d6d3c5e4fe43647ac (
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
|
// Copyright (c) 2012 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.
#ifndef CLOUD_PRINT_SERVICE_CHROME_LAUNCHER_H_
#define CLOUD_PRINT_SERVICE_CHROME_LAUNCHER_H_
#include <string>
#include <vector>
#include "base/basictypes.h"
#include "base/files/file_path.h"
#include "base/memory/scoped_ptr.h"
#include "base/threading/simple_thread.h"
class ChromeLauncher : public base::DelegateSimpleThread::Delegate {
public:
explicit ChromeLauncher(const base::FilePath& user_data);
virtual ~ChromeLauncher();
bool Start();
void Stop();
virtual void Run() OVERRIDE;
static std::string CreateServiceStateFile(
const std::string& proxy_id,
const std::vector<std::string>& printers);
private:
base::FilePath user_data_;
base::WaitableEvent stop_event_;
scoped_ptr<base::DelegateSimpleThread> thread_;
DISALLOW_COPY_AND_ASSIGN(ChromeLauncher);
};
#endif // CLOUD_PRINT_SERVICE_CHROME_LAUNCHER_H_
|