blob: 8adfd2d12d8f4ae1cd0a35dfb82b12ea2795f99c (
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
|
// 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_TAB_CALLBACK_PROXY_H_
#define WEBLAYER_BROWSER_TAB_CALLBACK_PROXY_H_
#include <jni.h>
#include "base/android/scoped_java_ref.h"
#include "base/macros.h"
#include "weblayer/public/tab_observer.h"
namespace weblayer {
class Tab;
// TabCallbackProxy forwards all TabObserver functions to the Java side. There
// is one TabCallbackProxy per Tab.
class TabCallbackProxy : public TabObserver {
public:
TabCallbackProxy(JNIEnv* env, jobject obj, Tab* tab);
~TabCallbackProxy() override;
// TabObserver:
void DisplayedUrlChanged(const GURL& url) override;
void OnRenderProcessGone() override;
void OnTitleUpdated(const base::string16& title) override;
private:
Tab* tab_;
base::android::ScopedJavaGlobalRef<jobject> java_observer_;
DISALLOW_COPY_AND_ASSIGN(TabCallbackProxy);
};
} // namespace weblayer
#endif // WEBLAYER_BROWSER_TAB_CALLBACK_PROXY_H_
|