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

Side by Side Diff: services/util/cpp/factory_service_base.cc

Issue 2007593004: Motown: Factor FactoryServiceBase out of MediaFactoryService (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 7 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 | « services/util/cpp/factory_service_base.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "base/logging.h"
6 #include "services/util/cpp/factory_service_base.h"
7
8 namespace mojo {
9 namespace util {
10
11 FactoryServiceBase::ProductBase::ProductBase(FactoryServiceBase* owner)
12 : owner_(owner) {
13 DCHECK(owner_);
14 }
15
16 FactoryServiceBase::ProductBase::~ProductBase() {}
17
18 FactoryServiceBase::FactoryServiceBase() {}
19
20 FactoryServiceBase::~FactoryServiceBase() {}
21
22 void FactoryServiceBase::Initialize(ApplicationImpl* app) {
23 app_ = app;
24 }
25
26 } // namespace util
27 } // namespace mojo
OLDNEW
« no previous file with comments | « services/util/cpp/factory_service_base.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698