Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
|
Alexei Svitkine (slow)
2016/10/03 15:04:31
Nit: Add empty line below.
xzhou
2016/10/03 20:08:41
Done.
| |
| 4 #include "components/arc/arc_features.h" | |
| 5 | |
| 6 namespace features { | |
| 7 | |
| 8 #if defined(OS_CHROMEOS) | |
| 9 // Disable ACTION_BOOT_COMPLETD broadcast for 3rd party applications on ARC. | |
|
Alexei Svitkine (slow)
2016/10/03 15:02:48
Nit: Update comment. You can still mention that th
xzhou
2016/10/03 20:08:41
Done.
| |
| 10 const base::Feature kArcBootCompletedBroadcast{ | |
| 11 "ArcBootCompletedBroadcast", base::FEATURE_ENABLED_BY_DEFAULT}; | |
| 12 #endif // defined(OS_CHROMEOS) | |
| 13 | |
| 14 } | |
|
Alexei Svitkine (slow)
2016/10/03 15:04:31
Nit: Add // namespace comment
xzhou
2016/10/03 20:08:41
Done.
| |
| OLD | NEW |