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 #include "remoting/test/remote_application_data.h" | |
| 6 | |
| 7 #include <map> | |
| 8 #include <string> | |
| 9 #include <vector> | |
| 10 | |
| 11 namespace remoting { | |
| 12 namespace test { | |
| 13 | |
| 14 static const std::vector<std::string> kRemoteApplicationNames; | |
| 15 | |
| 16 const std::vector<std::string>& GetRemoteApplicationNames() { | |
| 17 return remoting::test::kRemoteApplicationNames; | |
|
Wez
2015/03/16 22:19:10
Why do you want to return an empty vector here..?
joedow
2015/03/18 20:13:09
Done.
| |
| 18 } | |
| 19 | |
| 20 static const std::map<std::string, ApplicationInfo> kRemoteApplicationInfoMap; | |
| 21 | |
| 22 const std::map<std::string, ApplicationInfo>& GetRemoteApplicationInfoMap() { | |
| 23 return remoting::test::kRemoteApplicationInfoMap; | |
|
Wez
2015/03/16 22:19:10
Why do you want to return an empty map here...?
joedow
2015/03/18 20:13:09
Done.
| |
| 24 } | |
| 25 | |
| 26 } // namespace test | |
| 27 } // namespace remoting | |
| OLD | NEW |