summaryrefslogtreecommitdiffstats
path: root/android/autofill
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-09-30 11:29:41 +0100
committerSteve Block <steveblock@google.com>2010-09-30 11:59:36 +0100
commit6b26dd001f4240bbadcad52ad3d3d8444735380b (patch)
tree7c549bd495658419ab258447ba3439f49b9351b8 /android/autofill
parent8a94eb677615af335827cc4723424ebd51502ec1 (diff)
downloadexternal_chromium-6b26dd001f4240bbadcad52ad3d3d8444735380b.zip
external_chromium-6b26dd001f4240bbadcad52ad3d3d8444735380b.tar.gz
external_chromium-6b26dd001f4240bbadcad52ad3d3d8444735380b.tar.bz2
Remove an unused setter and getter from AndroidURLRequestContextGetter
Change-Id: I257f519a4dc8fd239a2cb874a4991a15b0536383
Diffstat (limited to 'android/autofill')
-rw-r--r--android/autofill/android_url_request_context_getter.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/android/autofill/android_url_request_context_getter.h b/android/autofill/android_url_request_context_getter.h
index 3f6f711..eff4465 100644
--- a/android/autofill/android_url_request_context_getter.h
+++ b/android/autofill/android_url_request_context_getter.h
@@ -30,8 +30,6 @@
#include "base/thread.h"
#include "common/net/url_request_context_getter.h"
-class MainThreadProxy;
-
class AndroidURLRequestContextGetter : public URLRequestContextGetter {
public:
AndroidURLRequestContextGetter()
@@ -39,25 +37,19 @@ public:
virtual ~AndroidURLRequestContextGetter() { }
+ // URLRequestContextGetter implementation
virtual URLRequestContext* GetURLRequestContext();
-
- // Returns a MessageLoopProxy corresponding to the thread on which the
- // request IO happens (the thread on which the returned URLRequestContext
- // may be used).
virtual scoped_refptr<base::MessageLoopProxy> GetIOMessageLoopProxy();
static AndroidURLRequestContextGetter* Get();
void SetURLRequestContext(URLRequestContext*);
- void SetMainThread(MainThreadProxy* m) { main_thread_proxy_ = m; };
- MainThreadProxy* GetMainThreadProxy() { return main_thread_proxy_; };
void SetIOThread(base::Thread* io_thread) { io_thread_ = io_thread; }
private:
static scoped_refptr<AndroidURLRequestContextGetter> instance_;
URLRequestContext* context_;
base::Thread* io_thread_;
- MainThreadProxy* main_thread_proxy_;
};
#endif // ANDROID_URL_REQUEST_CONTEXT_GETTER_H