blob: daf587e64119219fca55d70694ebbb240845043f [file] [log] [blame]
Natalie Chouinard8f550d972019-03-11 20:28:051// Copyright 2019 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_FEED_FEED_DEBUGGING_BRIDGE_H_
6#define CHROME_BROWSER_ANDROID_FEED_FEED_DEBUGGING_BRIDGE_H_
7
8#include <jni.h>
Natalie Chouinardb9529ab2019-03-12 16:46:089#include <string>
Natalie Chouinard8f550d972019-03-11 20:28:0510
11class GURL;
12
13// Native counterpart of FeedDebuggingBridge.java.
14namespace feed {
15
16GURL GetFeedFetchUrlForDebugging();
17
Natalie Chouinardb9529ab2019-03-12 16:46:0818std::string GetFeedProcessScopeDumpForDebugging();
19
Natalie Chouinarda8eec112019-03-20 23:23:1620void TriggerRefreshForDebugging();
21
Natalie Chouinard8f550d972019-03-11 20:28:0522} // namespace feed
23
24#endif // CHROME_BROWSER_ANDROID_FEED_FEED_DEBUGGING_BRIDGE_H_