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

Side by Side Diff: components/invalidation/impl/profile_invalidation_provider.h

Issue 1191393008: Introduce a layering in the invalidation component as public and impl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Explicitly forbid content to prevent future additions Created 5 years, 5 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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 #ifndef COMPONENTS_INVALIDATION_PROFILE_INVALIDATION_PROVIDER_H_ 5 #ifndef COMPONENTS_INVALIDATION_IMPL_PROFILE_INVALIDATION_PROVIDER_H_
6 #define COMPONENTS_INVALIDATION_PROFILE_INVALIDATION_PROVIDER_H_ 6 #define COMPONENTS_INVALIDATION_IMPL_PROFILE_INVALIDATION_PROVIDER_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "components/keyed_service/core/keyed_service.h" 11 #include "components/keyed_service/core/keyed_service.h"
12 12
13 namespace invalidation { 13 namespace invalidation {
14 14
15 class InvalidationService; 15 class InvalidationService;
16 16
(...skipping 10 matching lines...) Expand all
27 void Shutdown() override; 27 void Shutdown() override;
28 28
29 private: 29 private:
30 scoped_ptr<InvalidationService> invalidation_service_; 30 scoped_ptr<InvalidationService> invalidation_service_;
31 31
32 DISALLOW_COPY_AND_ASSIGN(ProfileInvalidationProvider); 32 DISALLOW_COPY_AND_ASSIGN(ProfileInvalidationProvider);
33 }; 33 };
34 34
35 } // namespace invalidation 35 } // namespace invalidation
36 36
37 #endif // COMPONENTS_INVALIDATION_PROFILE_INVALIDATION_PROVIDER_H_ 37 #endif // COMPONENTS_INVALIDATION_IMPL_PROFILE_INVALIDATION_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698