Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Unified Diff: extensions/shell/browser/shell_extensions_api_client.h

Issue 2370373002: Move chrome.bluetoothLowEnergy out of //chrome. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: extensions/shell/browser/shell_extensions_api_client.h
diff --git a/extensions/shell/browser/shell_extensions_api_client.h b/extensions/shell/browser/shell_extensions_api_client.h
index 17a26fc78c1c7bbd2e92a844cd5b63637b938ebc..bf4de3ea3b081a94e3a603dd9efdf774d9b96260 100644
--- a/extensions/shell/browser/shell_extensions_api_client.h
+++ b/extensions/shell/browser/shell_extensions_api_client.h
@@ -5,18 +5,28 @@
#ifndef EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSIONS_API_CLIENT_H_
#define EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSIONS_API_CLIENT_H_
+#include <memory>
+
#include "extensions/browser/api/extensions_api_client.h"
+#include "extensions/browser/kiosk/kiosk_delegate.h"
namespace extensions {
class ShellExtensionsAPIClient : public ExtensionsAPIClient {
public:
ShellExtensionsAPIClient();
+ ~ShellExtensionsAPIClient() override;
// ExtensionsAPIClient implementation.
void AttachWebContentsHelpers(content::WebContents* web_contents) const
override;
AppViewGuestDelegate* CreateAppViewGuestDelegate() const override;
+ KioskDelegate* GetKioskDelegate() override;
+
+ private:
+ std::unique_ptr<KioskDelegate> kiosk_delegate_;
+
+ DISALLOW_COPY_AND_ASSIGN(ShellExtensionsAPIClient);
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698