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

Unified Diff: components/keyed_service/core/keyed_service.h

Issue 1459843002: Fix a style guide violation in KeyedService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: components/keyed_service/core/keyed_service.h
diff --git a/components/keyed_service/core/keyed_service.h b/components/keyed_service/core/keyed_service.h
index ad5b529b56d4ea435d053cec274efd2f2bd10134..e9c6f29ebde6d367992d36d59584677e5da8750c 100644
--- a/components/keyed_service/core/keyed_service.h
+++ b/components/keyed_service/core/keyed_service.h
@@ -17,11 +17,11 @@ class KEYED_SERVICE_EXPORT KeyedService {
public:
KeyedService();
- // The first pass is to call Shutdown on a KeyedService.
- virtual void Shutdown();
-
// The second pass is the actual deletion of each object.
virtual ~KeyedService();
+
+ // The first pass is to call Shutdown on a KeyedService.
+ virtual void Shutdown();
};
#endif // COMPONENTS_KEYED_SERVICE_CORE_KEYED_SERVICE_H_
« 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