blob: bb34950a6eb8add23612c9093191c89fe87837db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
// Copyright (c) 2012 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 ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_IO_THREAD_CLIENT_IMPL_H_
#define ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_IO_THREAD_CLIENT_IMPL_H_
#include "android_webview/browser/aw_contents_io_thread_client.h"
#include "base/android/scoped_java_ref.h"
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
class GURL;
namespace content {
class WebContents;
}
namespace net {
class URLRequest;
}
namespace android_webview {
class InterceptedRequestData;
class AwContentsIoThreadClientImpl : public AwContentsIoThreadClient {
public:
// Associates the |jclient| instance (which must implement the
// AwContentsIoThreadClient Java interface) with the |web_contents|.
// This should be called at most once per |web_contents|.
static void Associate(content::WebContents* web_contents,
const base::android::JavaRef<jobject>& jclient);
AwContentsIoThreadClientImpl(const base::android::JavaRef<jobject>& jclient);
virtual ~AwContentsIoThreadClientImpl() OVERRIDE;
// Implementation of AwContentsIoThreadClient.
virtual CacheMode GetCacheMode() const OVERRIDE;
virtual scoped_ptr<InterceptedRequestData> ShouldInterceptRequest(
const GURL& location,
const net::URLRequest* request) OVERRIDE;
virtual bool ShouldBlockContentUrls() const OVERRIDE;
virtual bool ShouldBlockFileUrls() const OVERRIDE;
virtual bool ShouldBlockNetworkLoads() const OVERRIDE;
virtual void NewDownload(const GURL& url,
const std::string& user_agent,
const std::string& content_disposition,
const std::string& mime_type,
int64 content_length) OVERRIDE;
virtual void NewLoginRequest(const std::string& realm,
const std::string& account,
const std::string& args) OVERRIDE;
private:
base::android::ScopedJavaGlobalRef<jobject> java_object_;
DISALLOW_COPY_AND_ASSIGN(AwContentsIoThreadClientImpl);
};
// JNI registration method.
bool RegisterAwContentsIoThreadClientImpl(JNIEnv* env);
} // namespace android_webview
#endif // ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_IO_THREAD_CLIENT_IMPL_H_
|