blob: 00c71a1dd282183fcf5679a4ac60f7355794d6c5 [file] [log] [blame]
// Copyright 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.
#ifndef CONTENT_UTILITY_IN_PROCESS_UTILITY_THREAD_H_
#define CONTENT_UTILITY_IN_PROCESS_UTILITY_THREAD_H_
#include <string>
#include "base/threading/thread.h"
#include "content/common/content_export.h"
namespace content {
class ChildProcess;
class InProcessUtilityThread : public base::Thread {
public:
InProcessUtilityThread(const std::string& channel_id);
~InProcessUtilityThread() override;
private:
// base::Thread implementation:
void Init() override;
void CleanUp() override;
void InitInternal();
std::string channel_id_;
scoped_ptr<ChildProcess> child_process_;
DISALLOW_COPY_AND_ASSIGN(InProcessUtilityThread);
};
CONTENT_EXPORT base::Thread* CreateInProcessUtilityThread(
const std::string& channel_id);
} // namespace content
#endif // CONTENT_UTILITY_IN_PROCESS_UTILITY_THREAD_H_