Fix browser_context.cc
This commit is contained in:
parent
5e1a4e1222
commit
bb8da7ec7e
2 changed files with 7 additions and 0 deletions
|
@ -99,6 +99,11 @@ base::FilePath BrowserContext::GetPath() const {
|
||||||
return path_;
|
return path_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
scoped_ptr<content::ZoomLevelDelegate> BrowserContext::CreateZoomLevelDelegate(
|
||||||
|
const base::FilePath& partition_path) {
|
||||||
|
return scoped_ptr<content::ZoomLevelDelegate>();
|
||||||
|
}
|
||||||
|
|
||||||
bool BrowserContext::IsOffTheRecord() const {
|
bool BrowserContext::IsOffTheRecord() const {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,6 +46,8 @@ class BrowserContext : public content::BrowserContext,
|
||||||
|
|
||||||
void RegisterInternalPrefs(PrefRegistrySimple* pref_registry);
|
void RegisterInternalPrefs(PrefRegistrySimple* pref_registry);
|
||||||
|
|
||||||
|
scoped_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate(
|
||||||
|
const base::FilePath& partition_path) override;
|
||||||
bool IsOffTheRecord() const override;
|
bool IsOffTheRecord() const override;
|
||||||
net::URLRequestContextGetter* GetRequestContext() override;
|
net::URLRequestContextGetter* GetRequestContext() override;
|
||||||
net::URLRequestContextGetter* GetRequestContextForRenderProcess(
|
net::URLRequestContextGetter* GetRequestContextForRenderProcess(
|
||||||
|
|
Loading…
Reference in a new issue