Chromium Code Reviews| Index: components/version_info/channel_android.h |
| diff --git a/components/version_info/channel_android.h b/components/version_info/channel_android.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2a195f13d5661816359f91e1d847b39dd8f5462a |
| --- /dev/null |
| +++ b/components/version_info/channel_android.h |
| @@ -0,0 +1,16 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef COMPONENTS_VERSION_INFO_CHANNEL_ANDROID_H_ |
| +#define COMPONENTS_VERSION_INFO_CHANNEL_ANDROID_H_ |
| + |
| +#include "components/version_info/channel.h" |
| + |
| +namespace version_info { |
| + |
| +Channel ChannelFromPackageName(const char* name); |
|
Alexei Svitkine (slow)
2017/05/12 14:26:22
Nit: package_name
Also add a short 1-line comment
paulmiller
2017/05/12 19:45:35
Done.
|
| + |
| +} // namespace version_info |
| + |
| +#endif // COMPONENTS_VERSION_INFO_CHANNEL_ANDROID_H_ |