1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_ENTERPRISE_CONTENT_CLIPBOARD_RESTRICTION_SERVICE_H_
#define COMPONENTS_ENTERPRISE_CONTENT_CLIPBOARD_RESTRICTION_SERVICE_H_
#include <map>
#include <memory>
#include "base/memory/raw_ptr.h"
#include "base/memory/singleton.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/prefs/pref_change_registrar.h"
#include "components/url_matcher/url_matcher.h"
namespace content {
class BrowserContext;
}
class PrefService;
class ClipboardRestrictionService : public KeyedService {
public:
// Use
// ClipboardRestrictionServiceFactory::BuildServiceInstanceForBrowserContext
// instead.
explicit ClipboardRestrictionService(PrefService* pref_service);
ClipboardRestrictionService(const ClipboardRestrictionService&) = delete;
ClipboardRestrictionService& operator=(const ClipboardRestrictionService&) =
delete;
~ClipboardRestrictionService() override;
// Returns true if the user is allowed to write data to the clipboard from
// `url` as per the value of the CopyPreventionSettings policy, false
// otherwise. This check is only performed if `data_size` is larger than the
// `minimum_data_size` specified in the policy.
//
// If this returns false and `replacement_data` is supplied, a message will
// be written to `replacement_data` that is meant to be written to the
// clipboard instead of the intended data.
bool IsUrlAllowedToCopy(const GURL& url,
size_t data_size_in_bytes,
std::u16string* replacement_data = nullptr) const;
private:
friend class ClipboardRestrictionServiceTest;
friend class ClipboardRestrictionServiceFactory;
void UpdateSettings();
PrefChangeRegistrar pref_change_registrar_;
raw_ptr<PrefService> pref_service_;
base::MatcherStringPattern::ID next_id_;
std::unique_ptr<url_matcher::URLMatcher> enable_url_matcher_;
std::unique_ptr<url_matcher::URLMatcher> disable_url_matcher_;
size_t min_data_size_;
};
class ClipboardRestrictionServiceFactory : BrowserContextKeyedServiceFactory {
public:
ClipboardRestrictionServiceFactory(
const ClipboardRestrictionServiceFactory&) = delete;
ClipboardRestrictionServiceFactory& operator=(
const ClipboardRestrictionServiceFactory&) = delete;
static ClipboardRestrictionServiceFactory* GetInstance();
static ClipboardRestrictionService* GetForBrowserContext(
content::BrowserContext* context);
private:
ClipboardRestrictionServiceFactory();
~ClipboardRestrictionServiceFactory() override;
friend struct base::DefaultSingletonTraits<
ClipboardRestrictionServiceFactory>;
// BrowserContextKeyedServiceFactory:
content::BrowserContext* GetBrowserContextToUse(
content::BrowserContext* context) const override;
std::unique_ptr<KeyedService> BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const override;
};
#endif // COMPONENTS_ENTERPRISE_CONTENT_CLIPBOARD_RESTRICTION_SERVICE_H_
|