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

Side by Side Diff: components/copresence/copresence_manager.cc

Issue 441103002: Tests for the Copresence API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@api
Patch Set: Renaming to simply CopresenceDelegate Created 6 years, 4 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 2014 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 "components/copresence/public/copresence_manager.h"
6
7 #include "base/bind.h"
8 #include "components/copresence/copresence_manager_impl.h"
9 #include "components/copresence/rpc/rpc_handler.h"
10
11 namespace copresence {
12
13 // static
14 scoped_ptr<CopresenceManager> CopresenceManager::Create(
15 CopresenceDelegate* delegate) {
16 CopresenceManagerImpl* manager = new CopresenceManagerImpl(delegate);
17
18 manager->pending_init_operations_++;
19 manager->rpc_handler_.reset(new RpcHandler(delegate));
20 manager->rpc_handler_->Initialize(
21 base::Bind(&CopresenceManagerImpl::InitStepComplete,
22 // This is safe because the manager owns the RpcHandler.
23 base::Unretained(manager),
24 "Copresence device registration"));
25
26 manager->pending_init_operations_++;
27 DCHECK(delegate->GetWhispernetClient());
28 delegate->GetWhispernetClient()->Initialize(
29 base::Bind(&CopresenceManagerImpl::InitStepComplete,
30 // We cannot cancel WhispernetClient initialization.
31 // TODO(ckehoe): Get rid of this.
32 manager->AsWeakPtr(),
33 "Whispernet proxy initialization"));
34
35 return make_scoped_ptr<CopresenceManager>(manager);
36 }
37
38 } // namespace copresence
39
OLDNEW
« no previous file with comments | « components/copresence/copresence_client.cc ('k') | components/copresence/copresence_manager_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698