summaryrefslogtreecommitdiff
path: root/chromium/extensions/browser/preload_check.h
blob: 75e35d1c75f0f49b64f9608c2653685ff90b4c24 (plain)
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
// Copyright 2017 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 EXTENSIONS_BROWSER_PRELOAD_CHECK_H_
#define EXTENSIONS_BROWSER_PRELOAD_CHECK_H_

#include <set>
#include <string>

#include "base/callback.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"

namespace extensions {

class Extension;

// Encapsulates a possibly asynchronous operation to verify whether a
// precondition holds for loading the given extension.
class PreloadCheck {
 public:
  // These enumerators should only be referred to by name, so it is safe to
  // insert or remove values as necessary.
  enum Error {
    NONE,
    BLOCKLISTED_ID,
    BLOCKLISTED_UNKNOWN,
    DISALLOWED_BY_POLICY,
    WEBGL_NOT_SUPPORTED,
    WINDOW_SHAPE_NOT_SUPPORTED,
  };

  using Errors = std::set<Error>;
  using ResultCallback = base::OnceCallback<void(const Errors&)>;

  explicit PreloadCheck(scoped_refptr<const Extension> extension);
  virtual ~PreloadCheck();

  // This function must be called on the UI thread. The callback also occurs on
  // the UI thread.
  virtual void Start(ResultCallback callback) = 0;

  // Subclasses may provide an error message.
  virtual std::u16string GetErrorMessage() const;

  const Extension* extension() { return extension_.get(); }

 private:
  // The extension to check.
  scoped_refptr<const Extension> extension_;

  DISALLOW_COPY_AND_ASSIGN(PreloadCheck);
};

}  // namespace extensions

#endif  // EXTENSIONS_BROWSER_PRELOAD_CHECK_H_