Index: chrome/utility/shell_handler_impl_win.h |
diff --git a/chrome/utility/shell_handler_impl_win.h b/chrome/utility/shell_handler_impl_win.h |
index 224812e5dbddeaecf7cb32c8d021797761313477..e4ef16a4c07239935b33e104eb38047d8d32c36f 100644 |
--- a/chrome/utility/shell_handler_impl_win.h |
+++ b/chrome/utility/shell_handler_impl_win.h |
@@ -7,22 +7,19 @@ |
#include "base/macros.h" |
#include "chrome/common/shell_handler_win.mojom.h" |
-#include "mojo/public/cpp/bindings/strong_binding.h" |
// Implements the ShellHandler mojo interface. |
class ShellHandlerImpl : public mojom::ShellHandler { |
public: |
+ ShellHandlerImpl(); |
+ ~ShellHandlerImpl() override; |
+ |
static void Create(mojom::ShellHandlerRequest request); |
private: |
- explicit ShellHandlerImpl(mojom::ShellHandlerRequest request); |
- ~ShellHandlerImpl() override; |
- |
// mojom::ShellHandler: |
void IsPinnedToTaskbar(const IsPinnedToTaskbarCallback& callback) override; |
- mojo::StrongBinding<ShellHandler> binding_; |
- |
DISALLOW_COPY_AND_ASSIGN(ShellHandlerImpl); |
}; |