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

Side by Side Diff: components/component_updater/crx_update_item.h

Issue 590333002: Replace usage of basictypes.h with a combination of stdint.h and base/macros.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 6 years, 3 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_COMPONENT_UPDATER_CRX_UPDATE_ITEM_H_ 5 #ifndef COMPONENTS_COMPONENT_UPDATER_CRX_UPDATE_ITEM_H_
6 #define COMPONENTS_COMPONENT_UPDATER_CRX_UPDATE_ITEM_H_ 6 #define COMPONENTS_COMPONENT_UPDATER_CRX_UPDATE_ITEM_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/basictypes.h"
12 #include "base/memory/weak_ptr.h" 11 #include "base/memory/weak_ptr.h"
13 #include "base/time/time.h" 12 #include "base/time/time.h"
14 #include "base/version.h" 13 #include "base/version.h"
15 #include "components/component_updater/component_updater_service.h" 14 #include "components/component_updater/component_updater_service.h"
16 #include "components/component_updater/crx_downloader.h" 15 #include "components/component_updater/crx_downloader.h"
17 16
18 namespace component_updater { 17 namespace component_updater {
19 18
20 // This is the one and only per-item state structure. Designed to be hosted 19 // This is the one and only per-item state structure. Designed to be hosted
21 // in a std::vector or a std::list. The two main members are |component| 20 // in a std::vector or a std::list. The two main members are |component|
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 bool operator()(CrxUpdateItem* item) const { return item->id == id_; } 120 bool operator()(CrxUpdateItem* item) const { return item->id == id_; }
122 121
123 private: 122 private:
124 const std::string& id_; 123 const std::string& id_;
125 }; 124 };
126 }; 125 };
127 126
128 } // namespace component_updater 127 } // namespace component_updater
129 128
130 #endif // COMPONENTS_COMPONENT_UPDATER_CRX_UPDATE_ITEM_H_ 129 #endif // COMPONENTS_COMPONENT_UPDATER_CRX_UPDATE_ITEM_H_
OLDNEW
« no previous file with comments | « components/component_updater/crx_downloader.h ('k') | components/component_updater/default_component_installer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698