blob: 0972032282d0733a264e39f8e1e8b7da47bd1ddc (
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
|
// 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_LIB_AW_CONTENT_BROWSER_CLIENT_H_
#define ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_
#include "chrome/browser/chrome_content_browser_client.h"
namespace android_webview {
// TODO(boliu): Remove chrome/ dependency and inherit from
// content::ContentBrowserClient directly.
class AwContentBrowserClient : public chrome::ChromeContentBrowserClient {
public:
AwContentBrowserClient();
virtual ~AwContentBrowserClient();
// Overriden methods from ContentBrowserClient.
virtual void ResourceDispatcherHostCreated() OVERRIDE;
};
} // namespace android_webview
#endif // ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_
|