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

Unified Diff: components/profile_service/profile_app.h

Issue 1770533002: Change userid from a uint32_t to a string guid (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@33connector
Patch Set: . Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/mus/ws/window_manager_state.cc ('k') | components/profile_service/profile_app.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/profile_service/profile_app.h
diff --git a/components/profile_service/profile_app.h b/components/profile_service/profile_app.h
index 80c0130d5d4a4a6ea7048ff149dc8a7b2948fde4..12f0d4ef9c99a115c0fc0bfb08da0cf77d1c9f60 100644
--- a/components/profile_service/profile_app.h
+++ b/components/profile_service/profile_app.h
@@ -50,24 +50,24 @@ class ProfileApp : public mojo::ShellClient,
// applications inside of chrome in general; this system won't work once
// ProfileApp gets put in its own sandboxed process.
static void AssociateMojoUserIDWithProfileDir(
- uint32_t user_id,
+ const std::string& user_id,
const base::FilePath& profile_data_dir);
private:
// |ShellClient| override:
void Initialize(mojo::Connector* connector,
const std::string& url,
- uint32_t id,
- uint32_t user_id) override;
+ const std::string& user_id,
+ uint32_t id) override;
bool AcceptConnection(mojo::Connection* connection) override;
// |InterfaceFactory<ProfileService>| implementation:
void Create(mojo::Connection* connection,
- mojo::InterfaceRequest<ProfileService> request) override;
+ ProfileServiceRequest request) override;
// |InterfaceFactory<LevelDBService>| implementation:
void Create(mojo::Connection* connection,
- mojo::InterfaceRequest<leveldb::LevelDBService> request) override;
+ leveldb::LevelDBServiceRequest request) override;
mojo::TracingImpl tracing_;
« no previous file with comments | « components/mus/ws/window_manager_state.cc ('k') | components/profile_service/profile_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698