blob: 6d5201f41dd050dc046b1ab5fb369e9b2266aefd [file] [log] [blame]
zqzhang93e959d12017-03-16 13:10:201// Copyright 2017 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_ANDROID_APP_HOOKS_H_
6#define CHROME_BROWSER_ANDROID_APP_HOOKS_H_
7
8#include <jni.h>
dewittj471379a2017-05-23 18:35:239#include "base/android/scoped_java_ref.h"
zqzhang93e959d12017-03-16 13:10:2010#include "base/macros.h"
11
12namespace chrome {
13namespace android {
14
15class AppHooks {
16 public:
dewittj471379a2017-05-23 18:35:2317 static base::android::ScopedJavaLocalRef<jobject>
18 GetOfflinePagesCCTRequestDoneCallback();
zqzhang93e959d12017-03-16 13:10:2019
20 private:
21 AppHooks();
22 ~AppHooks();
23
24 DISALLOW_COPY_AND_ASSIGN(AppHooks);
25};
26
27} // namespace android
28} // namespace chrome
29
30#endif // CHROME_BROWSER_ANDROID_APP_HOOKS_H_