HomeSort by relevance Sort by last modified time
    Searched refs:ManifestFetchData (Results 1 - 3 of 3) sorted by null

  /external/chromium/chrome/browser/extensions/
extension_updater.h 40 class ManifestFetchData {
66 explicit ManifestFetchData(const GURL& update_url);
67 ~ManifestFetchData();
71 // this ManifestFetchData object remains unchanged.
89 // The set of extension id's for this ManifestFetchData.
102 DISALLOW_COPY_AND_ASSIGN(ManifestFetchData);
105 // A class for building a set of ManifestFetchData objects from
121 // Caller takes ownership of the returned ManifestFetchData
123 std::vector<ManifestFetchData*> GetFetches();
152 // ManifestFetchData* objects with the same base_url
    [all...]
extension_updater.cc 70 ManifestFetchData::ManifestFetchData(const GURL& update_url)
75 ManifestFetchData::~ManifestFetchData() {}
99 bool ManifestFetchData::AddExtension(std::string id, std::string version,
159 bool ManifestFetchData::Includes(const std::string& extension_id) const {
163 bool ManifestFetchData::DidPing(std::string extension_id, PingType type) const {
191 int days = ManifestFetchData::kNeverPinged;
203 return ManifestFetchData::kNeverPinged;
272 std::vector<ManifestFetchData*> ManifestFetchesBuilder::GetFetches()
    [all...]
extension_updater_unittest.cc 45 const ManifestFetchData::PingData kNeverPingedData(
46 ManifestFetchData::kNeverPinged, ManifestFetchData::kNeverPinged);
487 ManifestFetchData fetch_data(GURL("http://localhost/foo"));
501 ManifestFetchData fetch_data(GURL("http://localhost/foo"));
515 ManifestFetchData fetch_data(GURL("http://localhost/foo"));
531 std::vector<ManifestFetchData*> fetches = builder.GetFetches();
533 scoped_ptr<ManifestFetchData> fetch(fetches[0]);
562 ManifestFetchData fetch_data(GURL("http://localhost/foo"));
602 ManifestFetchData fetch_data(GURL("http://localhost/foo"))
    [all...]

Completed in 170 milliseconds