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

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

Issue 475333004: Remove old Chromoting iOS client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « remoting/ios/bridge/client_proxy.mm ('k') | remoting/ios/bridge/client_proxy_delegate_wrapper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/ios/bridge/client_proxy_delegate.h
diff --git a/remoting/ios/bridge/client_proxy_delegate.h b/remoting/ios/bridge/client_proxy_delegate.h
deleted file mode 100644
index 7810a2a8a96f1d297b20e784782d42a74c4240bc..0000000000000000000000000000000000000000
--- a/remoting/ios/bridge/client_proxy_delegate.h
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright 2014 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_IOS_BRIDGE_HOST_PROXY_DELEGATE_H_
-#define REMOTING_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
- regions:(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_IOS_BRIDGE_HOST_PROXY_DELEGATE_H_
« no previous file with comments | « remoting/ios/bridge/client_proxy.mm ('k') | remoting/ios/bridge/client_proxy_delegate_wrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698