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

Unified Diff: remoting/client/ios/bridge/client_proxy_delegate.h

Issue 2829853003: Remove crufty bridge code from old CRD iOS app. (Closed)
Patch Set: Fix remoting/display proto import issue. Created 3 years, 8 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/bridge/client_proxy_delegate.h
diff --git a/remoting/client/ios/bridge/client_proxy_delegate.h b/remoting/client/ios/bridge/client_proxy_delegate.h
deleted file mode 100644
index 9868f1e14c67429ad27601358cf7b03cb7e66efb..0000000000000000000000000000000000000000
--- a/remoting/client/ios/bridge/client_proxy_delegate.h
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright 2016 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_BRIDGE_HOST_PROXY_DELEGATE_H_
-#define REMOTING_CLIENT_IOS_BRIDGE_HOST_PROXY_DELEGATE_H_
-
-#import <Foundation/Foundation.h>
-#import <UIKit/UIKit.h>
-
-#include <vector>
-
-#include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
-
-// Contract to provide for callbacks from the common Chromoting protocol to the
-// UI Application.
-@protocol ClientProxyDelegate<NSObject>
-
-// HOST request for client to input their PIN.
-- (void)requestHostPin:(BOOL)pairingSupported;
-
-// HOST notification that a connection has been successfully opened.
-- (void)connected;
-
-// HOST notification for a change in connections status.
-- (void)connectionStatus:(NSString*)statusMessage;
-
-// HOST notification that a connection has failed.
-- (void)connectionFailed:(NSString*)errorMessage;
-
-// A new Canvas (desktop) update has arrived.
-- (void)applyFrame:(const webrtc::DesktopSize&)size
- stride:(NSInteger)stride
- data:(uint8_t*)data
- rects:(const std::vector<webrtc::DesktopRect>&)regions;
-
-// A new Cursor (mouse) update has arrived.
-- (void)applyCursor:(const webrtc::DesktopSize&)size
- hotspot:(const webrtc::DesktopVector&)hotspot
- cursorData:(uint8_t*)data;
-@end
-
-#endif // REMOTING_CLIENT_IOS_BRIDGE_HOST_PROXY_DELEGATE_H_
« no previous file with comments | « remoting/client/ios/bridge/client_proxy.mm ('k') | remoting/client/ios/bridge/client_proxy_delegate_wrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698