| Index: content/browser/devtools/protocol/page_handler.h
|
| diff --git a/content/browser/devtools/protocol/page_handler.h b/content/browser/devtools/protocol/page_handler.h
|
| index fe01ece07941b0eee5a3b3b5413ec403d28d34ab..c6ed1b1973d0ff356585e336232d3ff6242d128f 100644
|
| --- a/content/browser/devtools/protocol/page_handler.h
|
| +++ b/content/browser/devtools/protocol/page_handler.h
|
| @@ -47,8 +47,9 @@ class PageHandler {
|
|
|
| Response Navigate(const std::string& url, FrameId* frame_id);
|
|
|
| + using NavigationEntries = std::vector<scoped_refptr<NavigationEntry>>;
|
| Response GetNavigationHistory(int* current_index,
|
| - std::vector<NavigationEntry>* entries);
|
| + NavigationEntries* entries);
|
|
|
| Response NavigateToHistoryEntry(int entry_id);
|
|
|
| @@ -101,7 +102,7 @@ class PageHandler {
|
|
|
| void QueryUsageAndQuotaCompleted(
|
| scoped_refptr<DevToolsProtocol::Command> command,
|
| - scoped_ptr<QueryUsageAndQuotaResponse> response);
|
| + scoped_refptr<QueryUsageAndQuotaResponse> response);
|
|
|
| bool enabled_;
|
| bool touch_emulation_enabled_;
|
|
|