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

Side by Side Diff: chrome/browser/renderer_host/render_view_host_factory.cc

Issue 62044: Make the RenderViewHostFactory a global. This prevents us from having to pass... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/renderer_host/render_view_host_factory.h"
6
7 #include "base/logging.h"
8 #include "chrome/browser/renderer_host/render_view_host.h"
9
10 // static
11 RenderViewHostFactory* RenderViewHostFactory::factory_ = NULL;
12
13 // static
14 RenderViewHost* RenderViewHostFactory::Create(
15 SiteInstance* instance,
16 RenderViewHostDelegate* delegate,
17 int routing_id,
18 base::WaitableEvent* modal_dialog_event) {
19 if (factory_) {
20 return factory_->CreateRenderViewHost(instance, delegate,
21 routing_id, modal_dialog_event);
22 }
23 return new RenderViewHost(instance, delegate, routing_id, modal_dialog_event);
24 }
25
26 // static
27 void RenderViewHostFactory::RegisterFactory(RenderViewHostFactory* factory) {
28 DCHECK(!factory_) << "Can't register two factories at once.";
29 factory_ = factory;
30 }
31
32 // static
33 void RenderViewHostFactory::UnregisterFactory() {
34 DCHECK(factory_) << "No factory to unregister.";
35 factory_ = NULL;
36 }
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/render_view_host_factory.h ('k') | chrome/browser/renderer_host/test_render_view_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698