Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 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. | |
| 4 | |
| 5 #ifndef COMPONENTS_VARIATIONS_ANDROID_VARIATIONS_SEED_BRIDGE_H_ | |
| 6 #define COMPONENTS_VARIATIONS_ANDROID_VARIATIONS_SEED_BRIDGE_H_ | |
| 7 | |
| 8 #include <jni.h> | |
| 9 #include <string> | |
| 10 | |
| 11 namespace variations { | |
| 12 | |
|
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.
| |
| 13 namespace android { | |
| 14 | |
| 15 bool RegisterVariationsSeedBridge(JNIEnv* env); | |
| 16 | |
| 17 // Return the first run seed data pulled from the Java side of application. | |
| 18 void GetVariationsFirstRunSeed(std::string* seed_data, | |
| 19 std::string* seed_signature, | |
| 20 std::string* seed_country); | |
| 21 | |
| 22 } // namespace android | |
| 23 | |
| 24 } // namespace variations | |
| 25 | |
| 26 #endif // COMPONENTS_VARIATIONS_ANDROID_FIRSTRUN_VARIATIONS_SEED_BRIDGE_H_ | |
| OLD | NEW |