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

Unified Diff: remoting/protocol/pin_fetcher_factory.h

Issue 12518027: Protocol / client plugin changes to support interactively asking for a PIN (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
« remoting/protocol/pin_fetcher.h ('K') | « remoting/protocol/pin_fetcher.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/pin_fetcher_factory.h
diff --git a/remoting/protocol/pin_fetcher_factory.h b/remoting/protocol/pin_fetcher_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..2cd6c2b1891b1b7e03971387caa9f55039c49085
--- /dev/null
+++ b/remoting/protocol/pin_fetcher_factory.h
@@ -0,0 +1,25 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef REMOTING_PROTOCOL_PIN_FETCHER_FACTORY_H_
+#define REMOTING_PROTOCOL_PIN_FETCHER_FACTORY_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "remoting/protocol/pin_fetcher.h"
+
+namespace remoting {
+namespace protocol {
+
+class PinFetcherFactory {
+ public:
+ virtual scoped_ptr<PinFetcher> CreatePinFetcher() = 0;
+
+ protected:
+ virtual ~PinFetcherFactory() {}
+};
+
+} // namespace protocol
+} // namespace remoting
+
+#endif // REMOTING_PROTOCOL_PIN_FETCHER_FACTORY_H_
« remoting/protocol/pin_fetcher.h ('K') | « remoting/protocol/pin_fetcher.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698