mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	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
		
			
				
	
	
		
			33 lines
		
	
	
		
			987 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			987 B
		
	
	
	
		
			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_WAITABLE_EVENT_IMPL_H_
 | 
						|
#define CEF_LIBCEF_COMMON_WAITABLE_EVENT_IMPL_H_
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "base/synchronization/waitable_event.h"
 | 
						|
#include "cef/include/cef_waitable_event.h"
 | 
						|
 | 
						|
class CefWaitableEventImpl : public CefWaitableEvent {
 | 
						|
 public:
 | 
						|
  CefWaitableEventImpl(bool automatic_reset, bool initially_signaled);
 | 
						|
 | 
						|
  CefWaitableEventImpl(const CefWaitableEventImpl&) = delete;
 | 
						|
  CefWaitableEventImpl& operator=(const CefWaitableEventImpl&) = delete;
 | 
						|
 | 
						|
  // CefWaitableEvent methods:
 | 
						|
  void Reset() override;
 | 
						|
  void Signal() override;
 | 
						|
  bool IsSignaled() override;
 | 
						|
  void Wait() override;
 | 
						|
  bool TimedWait(int64_t max_ms) override;
 | 
						|
 | 
						|
 private:
 | 
						|
  base::WaitableEvent event_;
 | 
						|
 | 
						|
  IMPLEMENT_REFCOUNTING(CefWaitableEventImpl);
 | 
						|
};
 | 
						|
 | 
						|
#endif  // CEF_LIBCEF_COMMON_WAITABLE_EVENT_IMPL_H_
 |