Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1827)

Unified Diff: content/browser/renderer_host/render_view_host_unittest.cc

Issue 1915833002: Introduce Platform::cacheMetadataInCacheStorage() to store V8 code cache in CacheStorage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add comments in render_process_messages.h Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/render_view_host_unittest.cc
diff --git a/content/browser/renderer_host/render_view_host_unittest.cc b/content/browser/renderer_host/render_view_host_unittest.cc
index afe048cd24db894224efc2a755ba8122a6486ea4..7e3746cea992fbd9993c2886e1d16bb79e09a9df 100644
--- a/content/browser/renderer_host/render_view_host_unittest.cc
+++ b/content/browser/renderer_host/render_view_host_unittest.cc
@@ -244,17 +244,16 @@ TEST_F(RenderViewHostTest, RoutingIdSane) {
class TestSaveImageFromDataURL : public RenderMessageFilter {
public:
- TestSaveImageFromDataURL(
- BrowserContext* context)
- : RenderMessageFilter(
- 0,
- context,
- BrowserContext::GetDefaultStoragePartition(context)->
- GetURLRequestContext(),
- nullptr,
- nullptr,
- nullptr,
- nullptr) {
+ TestSaveImageFromDataURL(BrowserContext* context)
+ : RenderMessageFilter(0,
+ context,
+ BrowserContext::GetDefaultStoragePartition(context)
+ ->GetURLRequestContext(),
+ nullptr,
+ nullptr,
+ nullptr,
+ nullptr,
+ nullptr) {
Reset();
}

Powered by Google App Engine
This is Rietveld 408576698