34 lines
1.0 KiB
C++
34 lines
1.0 KiB
C++
// Copyright 2017 The Chromium Embedded Framework Authors. Portions copyright
|
|
// 2011 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 CEF_LIBCEF_COMMON_RESOURCE_UTIL_H_
|
|
#define CEF_LIBCEF_COMMON_RESOURCE_UTIL_H_
|
|
#pragma once
|
|
|
|
#include "cef/include/cef_base.h"
|
|
|
|
namespace base {
|
|
class CommandLine;
|
|
} // namespace base
|
|
|
|
namespace resource_util {
|
|
|
|
// Returns the directory that contains resource files (*.bin, *.dat, *.pak,
|
|
// etc).
|
|
base::FilePath GetResourcesDir();
|
|
|
|
void OverrideUserDataDir(CefSettings* settings,
|
|
const base::CommandLine* command_line);
|
|
|
|
#if BUILDFLAG(IS_LINUX)
|
|
// Look for binary files (*.bin, *.dat, *.pak, chrome-sandbox, libGLESv2.so,
|
|
// libEGL.so, locales/*.pak, swiftshader/*.so) next to libcef instead of the exe
|
|
// on Linux. This is already the default on Windows.
|
|
void OverrideAssetPath();
|
|
#endif
|
|
|
|
} // namespace resource_util
|
|
|
|
#endif // CEF_LIBCEF_COMMON_RESOURCE_UTIL_H_
|