Small clean up to about_flags_unittest.cc.
[chromium-blink-merge.git] / components / invalidation / profile_invalidation_provider.h
blob8277926e8509c9eb79346af0d10bdebda8039aaf
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.
5 #ifndef COMPONENTS_INVALIDATION_PROFILE_INVALIDATION_PROVIDER_H_
6 #define COMPONENTS_INVALIDATION_PROFILE_INVALIDATION_PROVIDER_H_
8 #include "base/compiler_specific.h"
9 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "components/keyed_service/core/keyed_service.h"
13 namespace invalidation {
15 class InvalidationService;
17 // A KeyedService that owns an InvalidationService.
18 class ProfileInvalidationProvider : public KeyedService {
19 public:
20 explicit ProfileInvalidationProvider(
21 scoped_ptr<InvalidationService> invalidation_service);
22 ~ProfileInvalidationProvider() override;
24 InvalidationService* GetInvalidationService();
26 // KeyedService:
27 void Shutdown() override;
29 private:
30 scoped_ptr<InvalidationService> invalidation_service_;
32 DISALLOW_COPY_AND_ASSIGN(ProfileInvalidationProvider);
35 } // namespace invalidation
37 #endif // COMPONENTS_INVALIDATION_PROFILE_INVALIDATION_PROVIDER_H_