#ifndef ANDROID_WEBVIEW_LIB_BROWSER_DELEGATE_IMPL_H_
#define ANDROID_WEBVIEW_LIB_BROWSER_DELEGATE_IMPL_H_
#include "android_webview/native/aw_browser_dependency_factory.h"
#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
namespace net {
class URLRequestContextGetter;
}
namespace android_webview {
class AwNetworkDelegate;
class AwURLRequestJobFactory;
class AwBrowserDependencyFactoryImpl : public AwBrowserDependencyFactory {
public:
AwBrowserDependencyFactoryImpl();
virtual ~AwBrowserDependencyFactoryImpl();
static void InstallInstance();
virtual content::BrowserContext* GetBrowserContext() OVERRIDE;
virtual content::WebContents* CreateWebContents() OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(AwBrowserDependencyFactoryImpl);
};
}
#endif