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

Side by Side Diff: sync/internal_api/public/internal_components_factory_impl.h

Issue 1545553003: Switch to standard integer types in sync/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 | « sync/internal_api/public/http_bridge.h ('k') | sync/internal_api/public/model_type_entity.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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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 // An InternalComponentsFactory implementation designed for real production / 5 // An InternalComponentsFactory implementation designed for real production /
6 // normal use. 6 // normal use.
7 7
8 #ifndef SYNC_INTERNAL_API_PUBLIC_INTERNAL_COMPONENTS_FACTORY_IMPL_H_ 8 #ifndef SYNC_INTERNAL_API_PUBLIC_INTERNAL_COMPONENTS_FACTORY_IMPL_H_
9 #define SYNC_INTERNAL_API_PUBLIC_INTERNAL_COMPONENTS_FACTORY_IMPL_H_ 9 #define SYNC_INTERNAL_API_PUBLIC_INTERNAL_COMPONENTS_FACTORY_IMPL_H_
10 10
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/macros.h"
14 #include "sync/base/sync_export.h" 15 #include "sync/base/sync_export.h"
15 #include "sync/internal_api/public/internal_components_factory.h" 16 #include "sync/internal_api/public/internal_components_factory.h"
16 17
17 namespace syncer { 18 namespace syncer {
18 19
19 class SYNC_EXPORT InternalComponentsFactoryImpl 20 class SYNC_EXPORT InternalComponentsFactoryImpl
20 : public InternalComponentsFactory { 21 : public InternalComponentsFactory {
21 public: 22 public:
22 explicit InternalComponentsFactoryImpl(const Switches& switches); 23 explicit InternalComponentsFactoryImpl(const Switches& switches);
23 ~InternalComponentsFactoryImpl() override; 24 ~InternalComponentsFactoryImpl() override;
(...skipping 20 matching lines...) Expand all
44 Switches GetSwitches() const override; 45 Switches GetSwitches() const override;
45 46
46 private: 47 private:
47 const Switches switches_; 48 const Switches switches_;
48 DISALLOW_COPY_AND_ASSIGN(InternalComponentsFactoryImpl); 49 DISALLOW_COPY_AND_ASSIGN(InternalComponentsFactoryImpl);
49 }; 50 };
50 51
51 } // namespace syncer 52 } // namespace syncer
52 53
53 #endif // SYNC_INTERNAL_API_PUBLIC_INTERNAL_COMPONENTS_FACTORY_IMPL_H_ 54 #endif // SYNC_INTERNAL_API_PUBLIC_INTERNAL_COMPONENTS_FACTORY_IMPL_H_
OLDNEW
« no previous file with comments | « sync/internal_api/public/http_bridge.h ('k') | sync/internal_api/public/model_type_entity.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698