summaryrefslogtreecommitdiff
path: root/chromium/extensions/renderer/extension_js_runner.h
blob: 7bc0d4e1d631f5a614514631f7014fd987660f38 (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
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef EXTENSIONS_RENDERER_EXTENSION_JS_RUNNER_H_
#define EXTENSIONS_RENDERER_EXTENSION_JS_RUNNER_H_

#include "base/memory/weak_ptr.h"
#include "base/time/time.h"
#include "extensions/renderer/bindings/js_runner.h"
#include "v8/include/v8-forward.h"

namespace extensions {
class ScriptContext;

// Implementation of a JSRunner that handles possible JS suspension.
class ExtensionJSRunner : public JSRunner {
 public:
  explicit ExtensionJSRunner(ScriptContext* script_context);

  ExtensionJSRunner(const ExtensionJSRunner&) = delete;
  ExtensionJSRunner& operator=(const ExtensionJSRunner&) = delete;

  ~ExtensionJSRunner() override;

  // JSRunner:
  void RunJSFunction(v8::Local<v8::Function> function,
                     v8::Local<v8::Context> context,
                     int argc,
                     v8::Local<v8::Value> argv[],
                     ResultCallback callback) override;
  v8::MaybeLocal<v8::Value> RunJSFunctionSync(
      v8::Local<v8::Function> function,
      v8::Local<v8::Context> context,
      int argc,
      v8::Local<v8::Value> argv[]) override;

 private:
  // Called with the result of executing the JS function.
  void OnFunctionComplete(ResultCallback,
                          absl::optional<base::Value> value,
                          base::TimeTicks start_time);

  // The associated ScriptContext. Guaranteed to outlive this object.
  ScriptContext* const script_context_;

  base::WeakPtrFactory<ExtensionJSRunner> weak_factory_{this};
};

}  // namespace extensions

#endif  // EXTENSIONS_RENDERER_EXTENSION_JS_RUNNER_H_