summaryrefslogtreecommitdiffstats
path: root/media/libmedia/mediaplayer.cpp
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2014-02-05 11:52:33 -0800
committerAndreas Huber <andih@google.com>2014-02-05 12:27:54 -0800
commit81e68448f3361eaf8618930471fdc3c21bdf5cbc (patch)
treeafc00a9a35746f18f85200755870067b4d63dd80 /media/libmedia/mediaplayer.cpp
parent412d4744efae64083e4f99a664e3efaba031af48 (diff)
downloadframeworks_av-81e68448f3361eaf8618930471fdc3c21bdf5cbc.zip
frameworks_av-81e68448f3361eaf8618930471fdc3c21bdf5cbc.tar.gz
frameworks_av-81e68448f3361eaf8618930471fdc3c21bdf5cbc.tar.bz2
Remove no longer needed http proxy handling code, it's obsolete now
since we started to use java's HTTPConnection instead of the native implementation. Also remove other remnants of the previous http implementation, such as accounting for the http user's uid. Change-Id: I60bfd31381ea40d2220db587ec5c433093b60034
Diffstat (limited to 'media/libmedia/mediaplayer.cpp')
-rw-r--r--media/libmedia/mediaplayer.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/media/libmedia/mediaplayer.cpp b/media/libmedia/mediaplayer.cpp
index a4d4b1a..24663ad 100644
--- a/media/libmedia/mediaplayer.cpp
+++ b/media/libmedia/mediaplayer.cpp
@@ -838,15 +838,4 @@ status_t MediaPlayer::setNextMediaPlayer(const sp<MediaPlayer>& next) {
return mPlayer->setNextPlayer(next == NULL ? NULL : next->mPlayer);
}
-status_t MediaPlayer::updateProxyConfig(
- const char *host, int32_t port, const char *exclusionList) {
- const sp<IMediaPlayerService>& service = getMediaPlayerService();
-
- if (service != NULL) {
- return service->updateProxyConfig(host, port, exclusionList);
- }
-
- return INVALID_OPERATION;
-}
-
}; // namespace android