15 lines
532 B
C
15 lines
532 B
C
// Copyright (c) 2012 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_TESTS_UNITTESTS_CHROMIUM_INCLUDES_H_
|
|
#define CEF_TESTS_UNITTESTS_CHROMIUM_INCLUDES_H_
|
|
#pragma once
|
|
|
|
// Include some Chromium headers first to avoid type conflicts with CEF headers.
|
|
#include "base/bind.h"
|
|
#include "base/strings/string16.h"
|
|
#include "base/synchronization/lock.h"
|
|
|
|
#endif // CEF_TESTS_UNITTESTS_CHROMIUM_INCLUDES_H_
|