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

Side by Side Diff: components/leveldb/leveldb_app.cc

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 unified diff | Download patch
« no previous file with comments | « components/leveldb/leveldb_app.h ('k') | components/mus/mus_app.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "components/leveldb/leveldb_app.h" 5 #include "components/leveldb/leveldb_app.h"
6 6
7 #include "components/leveldb/leveldb_service_impl.h" 7 #include "components/leveldb/leveldb_service_impl.h"
8 #include "mojo/shell/public/cpp/connection.h" 8 #include "mojo/shell/public/cpp/connection.h"
9 9
10 namespace leveldb { 10 namespace leveldb {
11 11
12 LevelDBApp::LevelDBApp() {} 12 LevelDBApp::LevelDBApp() {}
13 13
14 LevelDBApp::~LevelDBApp() {} 14 LevelDBApp::~LevelDBApp() {}
15 15
16 void LevelDBApp::Initialize(mojo::Connector* connector, 16 void LevelDBApp::Initialize(mojo::Connector* connector,
17 const std::string& url, 17 const std::string& url,
18 uint32_t id, 18 const std::string& user_id,
19 uint32_t user_id) { 19 uint32_t id) {
20 tracing_.Initialize(connector, url); 20 tracing_.Initialize(connector, url);
21 service_.reset(new LevelDBServiceImpl); 21 service_.reset(new LevelDBServiceImpl);
22 } 22 }
23 23
24 bool LevelDBApp::AcceptConnection(mojo::Connection* connection) { 24 bool LevelDBApp::AcceptConnection(mojo::Connection* connection) {
25 connection->AddInterface<LevelDBService>(this); 25 connection->AddInterface<LevelDBService>(this);
26 return true; 26 return true;
27 } 27 }
28 28
29 void LevelDBApp::Create(mojo::Connection* connection, 29 void LevelDBApp::Create(mojo::Connection* connection,
30 mojo::InterfaceRequest<LevelDBService> request) { 30 mojo::InterfaceRequest<LevelDBService> request) {
31 bindings_.AddBinding(service_.get(), std::move(request)); 31 bindings_.AddBinding(service_.get(), std::move(request));
32 } 32 }
33 33
34 } // namespace leveldb 34 } // namespace leveldb
OLDNEW
« no previous file with comments | « components/leveldb/leveldb_app.h ('k') | components/mus/mus_app.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698