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

Unified Diff: chrome/browser/renderer_host/render_view_host_factory.cc

Issue 3325012: Fix SessionStorage (Closed)
Patch Set: kill the last (new) dcheck Created 10 years, 3 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: chrome/browser/renderer_host/render_view_host_factory.cc
diff --git a/chrome/browser/renderer_host/render_view_host_factory.cc b/chrome/browser/renderer_host/render_view_host_factory.cc
index 4331f2da9912ce220c877583421eb6f436d44c2a..070fdec54354eddf5928ff55e0b2e67bd76fcac4 100644
--- a/chrome/browser/renderer_host/render_view_host_factory.cc
+++ b/chrome/browser/renderer_host/render_view_host_factory.cc
@@ -15,13 +15,13 @@ RenderViewHost* RenderViewHostFactory::Create(
SiteInstance* instance,
RenderViewHostDelegate* delegate,
int routing_id,
- int64 session_storage_namespace_id) {
+ SessionStorageNamespace* session_storage_namespace) {
if (factory_) {
return factory_->CreateRenderViewHost(instance, delegate, routing_id,
- session_storage_namespace_id);
+ session_storage_namespace);
}
return new RenderViewHost(instance, delegate, routing_id,
- session_storage_namespace_id);
+ session_storage_namespace);
}
// static
« no previous file with comments | « chrome/browser/renderer_host/render_view_host_factory.h ('k') | chrome/browser/renderer_host/test/site_instance_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698