OLD | NEW |
(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_ |
OLD | NEW |