OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 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 MEDIA_BASE_MESSAGE_LOOP_FACTORY_H_ |
| 6 #define MEDIA_BASE_MESSAGE_LOOP_FACTORY_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "base/scoped_ptr.h" |
| 11 |
| 12 class MessageLoop; |
| 13 |
| 14 namespace media { |
| 15 |
| 16 // Factory object that manages named MessageLoops. |
| 17 class MessageLoopFactory { |
| 18 public: |
| 19 // Get the message loop associated with |name|. A new MessageLoop |
| 20 // is created if the factory doesn't have one associated with |name|. |
| 21 // NULL is returned if |name| is an empty string, or a new |
| 22 // MessageLoop needs to be created and a failure occurs during the |
| 23 // creation process. |
| 24 virtual MessageLoop* GetMessageLoop(const std::string& name) = 0; |
| 25 |
| 26 protected: |
| 27 // Only allow scoped_ptr<> to delete factory. |
| 28 friend class scoped_ptr<MessageLoopFactory>; |
| 29 virtual ~MessageLoopFactory(); |
| 30 }; |
| 31 |
| 32 } // namespace media |
| 33 |
| 34 #endif // MEDIA_BASE_MESSAGE_LOOP_FACTORY_H_ |
OLD | NEW |