summaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorKristian Monsen <kristianm@google.com>2011-06-02 13:18:38 +0100
committerKristian Monsen <kristianm@google.com>2011-06-14 20:31:44 -0700
commit9c7e521a0bd94b62fffc1b1374dd743e20cd01bd (patch)
tree7ead630207aa0c68c9e7b0a68863f5d601fe6a41 /android
parent5bc0d8d0128a8fb64b9b0edfe64b61fa6549baab (diff)
downloadexternal_chromium-9c7e521a0bd94b62fffc1b1374dd743e20cd01bd.zip
external_chromium-9c7e521a0bd94b62fffc1b1374dd743e20cd01bd.tar.gz
external_chromium-9c7e521a0bd94b62fffc1b1374dd743e20cd01bd.tar.bz2
Merge Chromium at r11.0.672.0: Compile fix in android_url_request_context_getter.*
Typedef removed in this CL: http://src.chromium.org/viewvc/chrome/trunk/src/net/url_request/url_request_context.h?r1=70592&r2=71522&pathrev=74924 Change-Id: I3ed7374ea725269edd68eae7094e74df37ce7be3
Diffstat (limited to 'android')
-rw-r--r--android/autofill/android_url_request_context_getter.cc2
-rw-r--r--android/autofill/android_url_request_context_getter.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/android/autofill/android_url_request_context_getter.cc b/android/autofill/android_url_request_context_getter.cc
index 4dcf971..60f99d1 100644
--- a/android/autofill/android_url_request_context_getter.cc
+++ b/android/autofill/android_url_request_context_getter.cc
@@ -26,7 +26,7 @@
#include "android_url_request_context_getter.h"
-URLRequestContext* AndroidURLRequestContextGetter::GetURLRequestContext()
+net::URLRequestContext* AndroidURLRequestContextGetter::GetURLRequestContext()
{
return context_.get();
}
diff --git a/android/autofill/android_url_request_context_getter.h b/android/autofill/android_url_request_context_getter.h
index d47f792..2c3e79b 100644
--- a/android/autofill/android_url_request_context_getter.h
+++ b/android/autofill/android_url_request_context_getter.h
@@ -33,7 +33,7 @@
class AndroidURLRequestContextGetter : public URLRequestContextGetter {
public:
- AndroidURLRequestContextGetter(URLRequestContext* context, base::Thread* ioThread)
+ AndroidURLRequestContextGetter(net::URLRequestContext* context, base::Thread* ioThread)
: context_(context)
, io_thread_(ioThread)
{
@@ -42,11 +42,11 @@ public:
virtual ~AndroidURLRequestContextGetter() { }
// URLRequestContextGetter implementation
- virtual URLRequestContext* GetURLRequestContext();
+ virtual net::URLRequestContext* GetURLRequestContext();
virtual scoped_refptr<base::MessageLoopProxy> GetIOMessageLoopProxy() const;
private:
- scoped_refptr<URLRequestContext> context_;
+ scoped_refptr<net::URLRequestContext> context_;
mutable base::Thread* io_thread_;
};