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

Side by Side Diff: services/service_manager/public/cpp/lib/names.cc

Issue 2419063003: Move services/shell to services/service_manager (Closed)
Patch Set: Created 4 years, 2 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
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "services/shell/public/cpp/names.h" 5 #include "services/service_manager/public/cpp/names.h"
6 6
7 #include "base/strings/string_split.h" 7 #include "base/strings/string_split.h"
8 #include "base/strings/string_util.h" 8 #include "base/strings/string_util.h"
9 9
10 namespace shell { 10 namespace shell {
11 11
12 const char kNameType_Service[] = "service"; 12 const char kNameType_Service[] = "service";
13 const char kNameType_Exe[] = "exe"; 13 const char kNameType_Exe[] = "exe";
14 14
15 bool IsValidName(const std::string& name) { 15 bool IsValidName(const std::string& name) {
(...skipping 21 matching lines...) Expand all
37 37
38 std::string GetNamePath(const std::string& name) { 38 std::string GetNamePath(const std::string& name) {
39 std::vector<std::string> parts = 39 std::vector<std::string> parts =
40 base::SplitString(name, ":", base::KEEP_WHITESPACE, 40 base::SplitString(name, ":", base::KEEP_WHITESPACE,
41 base::SPLIT_WANT_ALL); 41 base::SPLIT_WANT_ALL);
42 DCHECK(2 == parts.size()); 42 DCHECK(2 == parts.size());
43 return parts.back(); 43 return parts.back();
44 } 44 }
45 45
46 } // namespace shell 46 } // namespace shell
OLDNEW
« no previous file with comments | « services/service_manager/public/cpp/lib/interface_registry.cc ('k') | services/service_manager/public/cpp/lib/service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698