cef/libcef/common/thread_impl.h
Marshall Greenblatt 49a34d9160 Apply new Chromium style for #include sorting
Add "cef/" prefix for CEF #includes in libcef/ directory.

Sort #includes by following
https://google.github.io/styleguide/cppguide.html#Names_and_Order_of_Includes
2024-05-01 14:34:32 -04:00

45 lines
1.3 KiB
C++

// Copyright 2016 The Chromium Embedded Framework 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 CEF_LIBCEF_COMMON_THREAD_IMPL_H_
#define CEF_LIBCEF_COMMON_THREAD_IMPL_H_
#pragma once
#include "base/threading/thread.h"
#include "cef/include/cef_thread.h"
class CefThreadImpl : public CefThread {
public:
CefThreadImpl();
CefThreadImpl(const CefThreadImpl&) = delete;
CefThreadImpl& operator=(const CefThreadImpl&) = delete;
~CefThreadImpl() override;
bool Create(const CefString& display_name,
cef_thread_priority_t priority,
cef_message_loop_type_t message_loop_type,
bool stoppable,
cef_com_init_mode_t com_init_mode);
// CefThread methods:
CefRefPtr<CefTaskRunner> GetTaskRunner() override;
cef_platform_thread_id_t GetPlatformThreadId() override;
void Stop() override;
bool IsRunning() override;
private:
std::unique_ptr<base::Thread> thread_;
cef_platform_thread_id_t thread_id_ = kInvalidPlatformThreadId;
CefRefPtr<CefTaskRunner> thread_task_runner_;
// TaskRunner for the owner thread.
scoped_refptr<base::SequencedTaskRunner> owner_task_runner_;
IMPLEMENT_REFCOUNTING(CefThreadImpl);
};
#endif // CEF_LIBCEF_COMMON_THREAD_IMPL_H_