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 CHROME_BROWSER_ANDROID_FIRSTRUN_VARIATIONS_VARIATIONS_SEED_BRIDGE_H_ | |
| 6 #define CHROME_BROWSER_ANDROID_FIRSTRUN_VARIATIONS_VARIATIONS_SEED_BRIDGE_H_ | |
| 7 | |
| 8 #include <jni.h> | |
| 9 #include <string> | |
| 10 | |
| 11 class VariationsSeedBridge { | |
| 12 public: | |
| 13 static bool RegisterVariationsSeedBridge(JNIEnv* env); | |
| 14 | |
| 15 // Return the first run seed data pulled from the Java side of application. | |
| 16 static void GetVariationsFirstRunSeed(std::string* seed_data, | |
|
Alexei Svitkine (slow)
2015/11/05 16:38:27
Can this be a standalone method instead of a stati
Alexander Agulenko
2015/11/06 08:09:01
Done.
| |
| 17 std::string* seed_signature, | |
| 18 std::string* seed_country); | |
| 19 }; | |
| 20 | |
| 21 #endif // CHROME_BROWSER_ANDROID_FIRSTRUN_VARIATIONS_VARIATIONS_SEED_BRIDGE_H_ | |
| OLD | NEW |