2010-07-24 03:13:55 +02:00
|
|
|
// Copyright (c) 2010 The Chromium Embedded Framework Authors.
|
|
|
|
// Portions copyright (c) 2010 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.
|
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#ifndef CEF_LIBCEF_CEF_PROCESS_IO_THREAD_H_
|
|
|
|
#define CEF_LIBCEF_CEF_PROCESS_IO_THREAD_H_
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "libcef/browser_request_context.h"
|
|
|
|
#include "libcef/cef_thread.h"
|
2010-07-24 03:13:55 +02:00
|
|
|
|
|
|
|
#include "base/basictypes.h"
|
|
|
|
|
2012-04-05 00:32:24 +02:00
|
|
|
namespace net {
|
|
|
|
class NetworkDelegate;
|
|
|
|
}
|
|
|
|
|
2010-07-24 03:13:55 +02:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// CefProcessIOThread
|
|
|
|
//
|
|
|
|
// This simple thread object is used for the specialized threads that the
|
|
|
|
// CefProcess spins up.
|
|
|
|
//
|
|
|
|
// Applications must initialize the COM library before they can call
|
|
|
|
// COM library functions other than CoGetMalloc and memory allocation
|
|
|
|
// functions, so this class initializes COM for those users.
|
|
|
|
class CefProcessIOThread : public CefThread {
|
|
|
|
public:
|
2012-01-10 00:46:23 +01:00
|
|
|
CefProcessIOThread();
|
2013-04-17 22:52:53 +02:00
|
|
|
explicit CefProcessIOThread(base::MessageLoop* message_loop);
|
2010-07-24 03:13:55 +02:00
|
|
|
virtual ~CefProcessIOThread();
|
|
|
|
|
2012-05-23 21:01:04 +02:00
|
|
|
BrowserRequestContext* request_context() { return request_context_.get(); }
|
2010-07-24 03:13:55 +02:00
|
|
|
|
2012-02-10 17:22:47 +01:00
|
|
|
protected:
|
|
|
|
virtual void Init();
|
|
|
|
virtual void CleanUp();
|
|
|
|
|
2012-05-23 21:01:04 +02:00
|
|
|
scoped_ptr<BrowserRequestContext> request_context_;
|
2012-04-05 00:32:24 +02:00
|
|
|
scoped_ptr<net::NetworkDelegate> network_delegate_;
|
2010-07-24 03:13:55 +02:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(CefProcessIOThread);
|
|
|
|
};
|
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#endif // CEF_LIBCEF_CEF_PROCESS_IO_THREAD_H_
|