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

Unified Diff: chrome/utility/shell_handler_impl_win.h

Issue 2326913003: Privatize StrongBinding lifetime management (Closed)
Patch Set: rebase 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
« no previous file with comments | « chrome/utility/image_decoder_impl.cc ('k') | chrome/utility/shell_handler_impl_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « chrome/utility/image_decoder_impl.cc ('k') | chrome/utility/shell_handler_impl_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698