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

Unified Diff: mojo/edk/system/child_broker_host.h

Issue 1476143002: Fix Clang-plugin style error in ChildBrokerHost (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Drop virtual Created 5 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/system/child_broker_host.h
diff --git a/mojo/edk/system/child_broker_host.h b/mojo/edk/system/child_broker_host.h
index 4ec5f910d1f2f128d8643e2319ef023d57d91bf6..7f4bc61e19db33cb60f4c700c0d6a67c7aeb654d 100644
--- a/mojo/edk/system/child_broker_host.h
+++ b/mojo/edk/system/child_broker_host.h
@@ -34,7 +34,11 @@ class MOJO_SYSTEM_IMPL_EXPORT ChildBrokerHost
ChildBrokerHost(base::ProcessHandle child_process, ScopedPlatformHandle pipe);
private:
- virtual ~ChildBrokerHost();
+#if defined(OS_WIN)
+ ~ChildBrokerHost() override;
+#else
+ ~ChildBrokerHost();
+#endif
void RegisterIOHandler();
void BeginRead();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698