Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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_EDDYSTONE_ENCODER_H_ | |
|
mattreynolds
2017/03/08 19:14:46
Change to COMPONENTS_PHYSICAL_WEB_EDDYSTONE_EDDYST
iankc
2017/03/09 20:45:45
Done.
| |
| 6 #define CHROME_BROWSER_ANDROID_EDDYSTONE_ENCODER_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 #include <vector> | |
| 10 | |
| 11 namespace physical_web { | |
| 12 std::vector<uint8_t> EncodeUrl(std::string c_url); | |
|
mattreynolds
2017/03/08 19:14:47
Add a comment describing the method
iankc
2017/03/09 20:45:45
Done.
| |
| 13 } | |
| 14 | |
| 15 #endif // CHROME_BROWSER_ANDROID_EDDYSTONE_ENCODER_H_ | |
| OLD | NEW |