Natalie Chouinard | 8f550d97 | 2019-03-11 20:28:05 | [diff] [blame] | 1 | // 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 Chouinard | b9529ab | 2019-03-12 16:46:08 | [diff] [blame] | 9 | #include <string> |
Natalie Chouinard | 8f550d97 | 2019-03-11 20:28:05 | [diff] [blame] | 10 | |
| 11 | class GURL; |
| 12 | |
| 13 | // Native counterpart of FeedDebuggingBridge.java. |
| 14 | namespace feed { |
| 15 | |
| 16 | GURL GetFeedFetchUrlForDebugging(); |
| 17 | |
Natalie Chouinard | b9529ab | 2019-03-12 16:46:08 | [diff] [blame] | 18 | std::string GetFeedProcessScopeDumpForDebugging(); |
| 19 | |
Natalie Chouinard | a8eec11 | 2019-03-20 23:23:16 | [diff] [blame] | 20 | void TriggerRefreshForDebugging(); |
| 21 | |
Natalie Chouinard | 8f550d97 | 2019-03-11 20:28:05 | [diff] [blame] | 22 | } // namespace feed |
| 23 | |
| 24 | #endif // CHROME_BROWSER_ANDROID_FEED_FEED_DEBUGGING_BRIDGE_H_ |