Chromium Code Reviews| Index: components/variations/android/variations_seed_bridge.h |
| diff --git a/components/variations/android/variations_seed_bridge.h b/components/variations/android/variations_seed_bridge.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c00ed4455e6dbb2950085af92d198ec6d3e7c047 |
| --- /dev/null |
| +++ b/components/variations/android/variations_seed_bridge.h |
| @@ -0,0 +1,26 @@ |
| +// Copyright 2015 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_VARIATIONS_ANDROID_VARIATIONS_SEED_BRIDGE_H_ |
| +#define COMPONENTS_VARIATIONS_ANDROID_VARIATIONS_SEED_BRIDGE_H_ |
| + |
| +#include <jni.h> |
| +#include <string> |
| + |
| +namespace variations { |
| + |
|
Alexei Svitkine (slow)
2015/11/06 16:17:56
Nit: Can remove this empty line. Same on line 23 a
Alexander Agulenko
2015/11/06 19:54:38
Done.
|
| +namespace android { |
| + |
| +bool RegisterVariationsSeedBridge(JNIEnv* env); |
| + |
| +// Return the first run seed data pulled from the Java side of application. |
| +void GetVariationsFirstRunSeed(std::string* seed_data, |
| + std::string* seed_signature, |
| + std::string* seed_country); |
| + |
| +} // namespace android |
| + |
| +} // namespace variations |
| + |
| +#endif // COMPONENTS_VARIATIONS_ANDROID_FIRSTRUN_VARIATIONS_SEED_BRIDGE_H_ |