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

Unified Diff: services/service_manager/public/cpp/identity.cc

Issue 2860023002: Eliminate lib directory for service manager client lib. (Closed)
Patch Set: Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: services/service_manager/public/cpp/identity.cc
diff --git a/services/service_manager/public/cpp/lib/identity.cc b/services/service_manager/public/cpp/identity.cc
similarity index 89%
rename from services/service_manager/public/cpp/lib/identity.cc
rename to services/service_manager/public/cpp/identity.cc
index 0a4abb45659b88f49a187f23261113fd36ff018b..4d6c8133e9a2ad6506f0c9f60cb7777b0c984155 100644
--- a/services/service_manager/public/cpp/lib/identity.cc
+++ b/services/service_manager/public/cpp/identity.cc
@@ -17,11 +17,10 @@ Identity::Identity(const std::string& name)
Identity::Identity(const std::string& name, const std::string& user_id)
: Identity(name, user_id, "") {}
-Identity::Identity(const std::string& name, const std::string& user_id,
+Identity::Identity(const std::string& name,
+ const std::string& user_id,
const std::string& instance)
- : name_(name),
- user_id_(user_id),
- instance_(instance) {
+ : name_(name), user_id_(user_id), instance_(instance) {
DCHECK(!user_id.empty());
DCHECK(base::IsValidGUID(user_id));
}
« no previous file with comments | « services/service_manager/public/cpp/binder_registry.cc ('k') | services/service_manager/public/cpp/interface_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698