Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1429)

Side by Side Diff: remoting/test/remote_application_data.cc

Issue 1008043003: Adding Test Fixture for initial test cases for the App Remoting Test Driver. Also includes the pub… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698