2019-09-04 17:13:32 +02:00
|
|
|
// Copyright 2019 The Chromium Embedded Framework Authors.
|
|
|
|
// Portions copyright 2014 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_BUNDLE_DELEGATE_H_
|
|
|
|
#define CEF_LIBCEF_COMMON_RESOURCE_BUNDLE_DELEGATE_H_
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ui/base/resource/resource_bundle.h"
|
|
|
|
|
2020-06-28 20:29:44 +02:00
|
|
|
class AlloyContentClient;
|
2019-09-04 17:13:32 +02:00
|
|
|
|
|
|
|
class CefResourceBundleDelegate : public ui::ResourceBundle::Delegate {
|
|
|
|
public:
|
2020-06-28 23:05:36 +02:00
|
|
|
CefResourceBundleDelegate() {}
|
|
|
|
|
|
|
|
void set_pack_loading_disabled(bool val) { pack_loading_disabled_ = val; }
|
|
|
|
bool pack_loading_disabled() const { return pack_loading_disabled_; }
|
|
|
|
void set_allow_pack_file_load(bool val) { allow_pack_file_load_ = val; }
|
|
|
|
bool allow_pack_file_load() const { return allow_pack_file_load_; }
|
2019-09-04 17:13:32 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
// ui::ResourceBundle::Delegate methods.
|
|
|
|
base::FilePath GetPathForResourcePack(const base::FilePath& pack_path,
|
|
|
|
ui::ScaleFactor scale_factor) override;
|
|
|
|
base::FilePath GetPathForLocalePack(const base::FilePath& pack_path,
|
|
|
|
const std::string& locale) override;
|
|
|
|
gfx::Image GetImageNamed(int resource_id) override;
|
|
|
|
gfx::Image GetNativeImageNamed(int resource_id) override;
|
|
|
|
base::RefCountedStaticMemory* LoadDataResourceBytes(
|
|
|
|
int resource_id,
|
|
|
|
ui::ScaleFactor scale_factor) override;
|
2021-06-04 03:34:56 +02:00
|
|
|
absl::optional<std::string> LoadDataResourceString(int resource_id) override;
|
2019-09-04 17:13:32 +02:00
|
|
|
bool GetRawDataResource(int resource_id,
|
|
|
|
ui::ScaleFactor scale_factor,
|
2020-10-08 21:54:42 +02:00
|
|
|
base::StringPiece* value) const override;
|
2021-04-21 00:52:34 +02:00
|
|
|
bool GetLocalizedString(int message_id, std::u16string* value) const override;
|
2019-09-04 17:13:32 +02:00
|
|
|
|
|
|
|
private:
|
2020-06-28 23:05:36 +02:00
|
|
|
bool pack_loading_disabled_ = false;
|
|
|
|
bool allow_pack_file_load_ = false;
|
2019-09-04 17:13:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_COMMON_RESOURCE_BUNDLE_DELEGATE_H_
|