OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef REMOTING_PROTOCOL_PIN_FETCHER_FACTORY_H_ |
| 6 #define REMOTING_PROTOCOL_PIN_FETCHER_FACTORY_H_ |
| 7 |
| 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "remoting/protocol/pin_fetcher.h" |
| 10 |
| 11 namespace remoting { |
| 12 namespace protocol { |
| 13 |
| 14 class PinFetcherFactory { |
| 15 public: |
| 16 virtual scoped_ptr<PinFetcher> CreatePinFetcher() = 0; |
| 17 |
| 18 protected: |
| 19 virtual ~PinFetcherFactory() {} |
| 20 }; |
| 21 |
| 22 } // namespace protocol |
| 23 } // namespace remoting |
| 24 |
| 25 #endif // REMOTING_PROTOCOL_PIN_FETCHER_FACTORY_H_ |
OLD | NEW |