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

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

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 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_FACTORY_H_
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_FACTORY_H_
7
8 #include "base/basictypes.h"
9
10 class RenderViewHost;
11 class RenderViewHostDelegate;
12 class SiteInstance;
13
14 namespace base {
15 class WaitableEvent;
16 } // namespace base
17
18 // A factory for creating RenderViewHosts. There is a global factory function
19 // that can be installed for the purposes of testing to provide a specialized
20 // RenderViewHost class.
21 class RenderViewHostFactory {
22 public:
23 // Creates a RenderViewHost using the currently registered factory, or the
24 // default one if no factory is registered. Ownership of the returned
25 // pointer will be passed to the caller.
26 static RenderViewHost* Create(SiteInstance* instance,
27 RenderViewHostDelegate* delegate,
28 int routing_id,
29 base::WaitableEvent* modal_dialog_event);
30
31 // Returns true if there is currently a globally-registered factory.
32 static bool has_factory() {
33 return !!factory_;
34 }
35
36 protected:
37 RenderViewHostFactory() {}
38 virtual ~RenderViewHostFactory() {}
39
40 // You can derive from this class and specify an implementation for this
41 // function to create a different kind of RenderViewHost for testing.
42 virtual RenderViewHost* CreateRenderViewHost(
43 SiteInstance* instance,
44 RenderViewHostDelegate* delegate,
45 int routing_id,
46 base::WaitableEvent* modal_dialog_event) = 0;
47
48 // Registers your factory to be called when new RenderViewHosts are created.
49 // We have only one global factory, so there must be no factory registered
50 // before the call. This class does NOT take ownership of the pointer.
51 static void RegisterFactory(RenderViewHostFactory* factory);
52
53 // Unregister the previously registered factory. With no factory registered,
54 // the default RenderViewHosts will be created.
55 static void UnregisterFactory();
56
57 private:
58 // The current globally registered factory. This is NULL when we should
59 // create the default RenderViewHosts.
60 static RenderViewHostFactory* factory_;
61
62 DISALLOW_COPY_AND_ASSIGN(RenderViewHostFactory);
63 };
64
65
66 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_FACTORY_H_
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/render_view_host.h ('k') | chrome/browser/renderer_host/render_view_host_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698