0

Chromecast shell build fix for new BrowserContext API:

Triggered by https://codereview.chromium.org/369703002.

R=lcwu@chromium.org
BUG=None

Review URL: https://codereview.chromium.org/442213002

Cr-Commit-Position: refs/heads/master@{#288227}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288227 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
gunsch@chromium.org
2014-08-08 06:34:39 +00:00
parent 20013200c2
commit 855c3bc877
2 changed files with 6 additions and 0 deletions

@ -127,5 +127,10 @@ content::PushMessagingService* CastBrowserContext::GetPushMessagingService() {
return NULL;
}
content::SSLHostStateDelegate* CastBrowserContext::GetSSLHostStateDelegate() {
NOTIMPLEMENTED();
return NULL;
}
} // namespace shell
} // namespace chromecast

@ -43,6 +43,7 @@ class CastBrowserContext : public content::BrowserContext {
virtual content::BrowserPluginGuestManager* GetGuestManager() OVERRIDE;
virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE;
virtual content::PushMessagingService* GetPushMessagingService() OVERRIDE;
virtual content::SSLHostStateDelegate* GetSSLHostStateDelegate() OVERRIDE;
private:
class CastResourceContext;