| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/renderer_host/render_view_host_factory.h" | 5 #include "content/browser/renderer_host/render_view_host_factory.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "content/browser/renderer_host/render_view_host_impl.h" | 8 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 9 | 9 |
| 10 namespace content { | 10 namespace content { |
| 11 | 11 |
| 12 // static | 12 // static |
| 13 RenderViewHostFactory* RenderViewHostFactory::factory_ = NULL; | 13 RenderViewHostFactory* RenderViewHostFactory::factory_ = NULL; |
| 14 | 14 |
| 15 // static | 15 // static |
| 16 RenderViewHost* RenderViewHostFactory::Create( | 16 RenderViewHost* RenderViewHostFactory::Create( |
| 17 SiteInstance* instance, | 17 SiteInstance* instance, |
| 18 RenderViewHostDelegate* delegate, | 18 RenderViewHostDelegate* delegate, |
| 19 RenderWidgetHostDelegate* widget_delegate, | 19 RenderWidgetHostDelegate* widget_delegate, |
| 20 int routing_id, | 20 int routing_id, |
| 21 int main_frame_routing_id, |
| 21 bool swapped_out, | 22 bool swapped_out, |
| 22 SessionStorageNamespace* session_storage_namespace) { | 23 SessionStorageNamespace* session_storage_namespace) { |
| 23 if (factory_) { | 24 if (factory_) { |
| 24 return factory_->CreateRenderViewHost(instance, delegate, widget_delegate, | 25 return factory_->CreateRenderViewHost(instance, delegate, widget_delegate, |
| 25 routing_id, swapped_out, | 26 routing_id, main_frame_routing_id, |
| 27 swapped_out, |
| 26 session_storage_namespace); | 28 session_storage_namespace); |
| 27 } | 29 } |
| 28 return new RenderViewHostImpl(instance, delegate, widget_delegate, routing_id, | 30 return new RenderViewHostImpl(instance, delegate, widget_delegate, routing_id, |
| 29 swapped_out, session_storage_namespace); | 31 main_frame_routing_id, swapped_out, |
| 32 session_storage_namespace); |
| 30 } | 33 } |
| 31 | 34 |
| 32 // static | 35 // static |
| 33 void RenderViewHostFactory::RegisterFactory(RenderViewHostFactory* factory) { | 36 void RenderViewHostFactory::RegisterFactory(RenderViewHostFactory* factory) { |
| 34 DCHECK(!factory_) << "Can't register two factories at once."; | 37 DCHECK(!factory_) << "Can't register two factories at once."; |
| 35 factory_ = factory; | 38 factory_ = factory; |
| 36 } | 39 } |
| 37 | 40 |
| 38 // static | 41 // static |
| 39 void RenderViewHostFactory::UnregisterFactory() { | 42 void RenderViewHostFactory::UnregisterFactory() { |
| 40 DCHECK(factory_) << "No factory to unregister."; | 43 DCHECK(factory_) << "No factory to unregister."; |
| 41 factory_ = NULL; | 44 factory_ = NULL; |
| 42 } | 45 } |
| 43 | 46 |
| 44 } // namespace content | 47 } // namespace content |
| OLD | NEW |