From a98199511a8167df4c30e942e1d5622f906c4532 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Sun, 27 Jul 2014 10:44:39 +0000 Subject: [PATCH] Implement GetGuestManagerDelegate. --- brightray/browser/browser_context.cc | 4 ++++ brightray/browser/browser_context.h | 2 ++ 2 files changed, 6 insertions(+) diff --git a/brightray/browser/browser_context.cc b/brightray/browser/browser_context.cc index d82f4bc256..9628dc6b38 100644 --- a/brightray/browser/browser_context.cc +++ b/brightray/browser/browser_context.cc @@ -204,4 +204,8 @@ quota::SpecialStoragePolicy* BrowserContext::GetSpecialStoragePolicy() { return nullptr; } +content::BrowserPluginGuestManagerDelegate* BrowserContext::GetGuestManagerDelegate() { + return nullptr; +} + } // namespace brightray diff --git a/brightray/browser/browser_context.h b/brightray/browser/browser_context.h index a43d2380da..e59c72ab92 100644 --- a/brightray/browser/browser_context.h +++ b/brightray/browser/browser_context.h @@ -80,6 +80,8 @@ class BrowserContext : public content::BrowserContext { GetDownloadManagerDelegate() OVERRIDE; virtual content::GeolocationPermissionContext* GetGeolocationPermissionContext() OVERRIDE; + virtual content::BrowserPluginGuestManagerDelegate* + GetGuestManagerDelegate() OVERRIDE; virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE;