| Index: android_webview/lib/aw_content_browser_client.h
|
| diff --git a/android_webview/lib/aw_content_browser_client.h b/android_webview/lib/aw_content_browser_client.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0972032282d0733a264e39f8e1e8b7da47bd1ddc
|
| --- /dev/null
|
| +++ b/android_webview/lib/aw_content_browser_client.h
|
| @@ -0,0 +1,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_
|
|
|