blob: 1a6d1c8ccecbd9a7e20c9c0fd6b92259fda703eb (
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
|
// 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 CHROME_TEST_CHROMEDRIVER_CHROME_IMPL_H_
#define CHROME_TEST_CHROMEDRIVER_CHROME_IMPL_H_
#include "base/compiler_specific.h"
#include "base/files/scoped_temp_dir.h"
#include "base/process.h"
#include "chrome/test/chromedriver/chrome.h"
class Status;
class ChromeImpl : public Chrome {
public:
ChromeImpl(base::ProcessHandle process, base::ScopedTempDir* user_data_dir);
virtual ~ChromeImpl();
// Overridden from Chrome:
virtual Status Quit() OVERRIDE;
private:
base::ProcessHandle process_;
base::ScopedTempDir user_data_dir_;
};
#endif // CHROME_TEST_CHROMEDRIVER_CHROME_IMPL_H_
|