summaryrefslogtreecommitdiff
path: root/chromium/weblayer/browser/error_page_callback_proxy.h
blob: 181b7e0b6e82c217272bd450ed7f1fbc7509efed (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
// Copyright 2019 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 WEBLAYER_BROWSER_ERROR_PAGE_CALLBACK_PROXY_H_
#define WEBLAYER_BROWSER_ERROR_PAGE_CALLBACK_PROXY_H_

#include <jni.h>

#include "base/android/scoped_java_ref.h"
#include "base/memory/raw_ptr.h"
#include "weblayer/public/error_page_delegate.h"

namespace weblayer {

class Tab;

// ErrorPageCallbackProxy forwards all ErrorPageDelegate functions to the Java
// side. There is one ErrorPageCallbackProxy per Tab.
class ErrorPageCallbackProxy : public ErrorPageDelegate {
 public:
  ErrorPageCallbackProxy(JNIEnv* env, jobject obj, Tab* tab);

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

  ~ErrorPageCallbackProxy() override;

  // ErrorPageDelegate:
  bool OnBackToSafety() override;
  std::unique_ptr<ErrorPage> GetErrorPageContent(
      Navigation* navigation) override;

 private:
  raw_ptr<Tab> tab_;
  base::android::ScopedJavaGlobalRef<jobject> java_impl_;
};

}  // namespace weblayer

#endif  // WEBLAYER_BROWSER_ERROR_PAGE_CALLBACK_PROXY_H_