Chromium Code Reviews| Index: content/common/view_messages.h |
| diff --git a/content/common/view_messages.h b/content/common/view_messages.h |
| index 77c2d73a2284acdabb22614b39f0312a2145fb19..d2645af38342e066fd6dd2f7e1562f402c12a977 100644 |
| --- a/content/common/view_messages.h |
| +++ b/content/common/view_messages.h |
| @@ -1467,6 +1467,14 @@ IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata, |
| double /* expected_response_time */, |
| std::vector<char> /* data */) |
| +// Message sent from the renderer to the browser to request that the browser |
| +// cache |data| associated with |url| and |expected_response_time|. |
| +IPC_MESSAGE_CONTROL3( |
| + ViewHostMsg_DidGenerateCacheableMetadataOriginalResponseTime, |
| + GURL /* url */, |
| + int64 /* expected_response_time */, |
|
davidben
2015/02/18 18:50:45
base::Time? We don't seem to have issues putting a
|
| + std::vector<char> /* data */) |
| + |
| // Register a new handler for URL requests with the given scheme. |
| IPC_MESSAGE_ROUTED4(ViewHostMsg_RegisterProtocolHandler, |
| std::string /* scheme */, |