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

Unified Diff: components/arc/arc_bridge_bootstrap.h

Issue 1925183004: arc_bridge: Add more logging, plus cleanup (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Fixed unit tests Created 4 years, 8 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/browser/chromeos/arc/arc_settings_service.cc ('k') | components/arc/arc_bridge_bootstrap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/arc_bridge_bootstrap.h
diff --git a/components/arc/arc_bridge_bootstrap.h b/components/arc/arc_bridge_bootstrap.h
index 44cfc7f0ceb5178fc02b0476511dc2848db18088..918c2c0bba838a31e4fa36bc55ae9c825c10e2c5 100644
--- a/components/arc/arc_bridge_bootstrap.h
+++ b/components/arc/arc_bridge_bootstrap.h
@@ -28,7 +28,7 @@ class ArcBridgeBootstrap {
// Creates a default instance of ArcBridgeBootstrap.
static std::unique_ptr<ArcBridgeBootstrap> Create();
- virtual ~ArcBridgeBootstrap();
+ virtual ~ArcBridgeBootstrap() = default;
// This must be called before calling Start() or Stop(). |delegate| is owned
// by the caller and must outlive this instance.
@@ -43,7 +43,7 @@ class ArcBridgeBootstrap {
virtual void Stop() = 0;
protected:
- ArcBridgeBootstrap();
+ ArcBridgeBootstrap() = default;
// Owned by the caller.
Delegate* delegate_ = nullptr;
« no previous file with comments | « chrome/browser/chromeos/arc/arc_settings_service.cc ('k') | components/arc/arc_bridge_bootstrap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698