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

Unified Diff: remoting/client/ios/session/remoting_client_session_delegate.h

Issue 2871993003: Moving the iOS directory to be remoting top level. (Closed)
Patch Set: //remoting/ios was the old landing target for the internal iOS application. Fix. Created 3 years, 7 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
Index: remoting/client/ios/session/remoting_client_session_delegate.h
diff --git a/remoting/client/ios/session/remoting_client_session_delegate.h b/remoting/client/ios/session/remoting_client_session_delegate.h
deleted file mode 100644
index ab0b9efb873420b5bdf40125d0baa394e9c1ae47..0000000000000000000000000000000000000000
--- a/remoting/client/ios/session/remoting_client_session_delegate.h
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright 2017 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_CLIENT_IOS_SESSION_REMOTING_CLIENT_SESSION_DELEGATE_H_
-#define REMOTING_CLIENT_IOS_SESSION_REMOTING_CLIENT_SESSION_DELEGATE_H_
-
-#include "base/macros.h"
-#include "base/memory/weak_ptr.h"
-#include "remoting/client/chromoting_session.h"
-#include "remoting/protocol/connection_to_host.h"
-
-@class RemotingClient;
-
-namespace remoting {
-
-class ChromotingClientRuntime;
-
-class RemotingClientSessonDelegate : public ChromotingSession::Delegate {
- public:
- RemotingClientSessonDelegate(RemotingClient* client);
- ~RemotingClientSessonDelegate() override;
-
- // ChromotingSession::Delegate implementation
-
- void OnConnectionState(protocol::ConnectionToHost::State state,
- protocol::ErrorCode error) override;
- void CommitPairingCredentials(const std::string& host,
- const std::string& id,
- const std::string& secret) override;
- void FetchThirdPartyToken(const std::string& token_url,
- const std::string& client_id,
- const std::string& scope) override;
- void SetCapabilities(const std::string& capabilities) override;
- void HandleExtensionMessage(const std::string& type,
- const std::string& message) override;
-
- base::WeakPtr<RemotingClientSessonDelegate> GetWeakPtr();
-
- private:
- ChromotingClientRuntime* runtime_;
- id client_;
-
- base::WeakPtrFactory<RemotingClientSessonDelegate> weak_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(RemotingClientSessonDelegate);
-};
-
-} // namespace remoting
-
-#endif // REMOTING_CLIENT_IOS_SESSION_REMOTING_CLIENT_SESSION_DELEGATE_H_
« no previous file with comments | « remoting/client/ios/session/remoting_client.mm ('k') | remoting/client/ios/session/remoting_client_session_delegate.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698