Searched refs:IsExtensionPending (Results 1 – 8 of 8) sorted by relevance
108 virtual bool IsExtensionPending(const std::string& id) = 0;
208 virtual bool IsExtensionPending(const std::string& id) OVERRIDE;
156 MOCK_METHOD1(IsExtensionPending, bool(const std::string&));185 ON_CALL(*this, IsExtensionPending(_)) in DelegateTo()187 &ExtensionDownloaderDelegate::IsExtensionPending)); in DelegateTo()825 EXPECT_CALL(delegate, IsExtensionPending(_)).WillRepeatedly(Return(false)); in TestDetermineUpdates()871 EXPECT_CALL(delegate, IsExtensionPending(_)).WillRepeatedly(Return(true)); in TestDetermineUpdatesPending()965 EXPECT_CALL(delegate, IsExtensionPending("3333")) in TestMultipleManifestDownloading()995 EXPECT_CALL(delegate, IsExtensionPending("4444")) in TestMultipleManifestDownloading()
623 bool ExtensionUpdater::IsExtensionPending(const std::string& id) { in IsExtensionPending() function in extensions::ExtensionUpdater
647 if (!delegate_->IsExtensionPending(id)) { in DetermineUpdates()
104 virtual bool IsExtensionPending(const std::string& id) OVERRIDE;
196 bool ExternalCache::IsExtensionPending(const std::string& id) { in IsExtensionPending() function in chromeos::ExternalCache
314 app_data, external_cache_->IsExtensionPending(app_data.app_id()))); in GetApps()323 *app = App(*data, external_cache_->IsExtensionPending(app_id)); in GetApp()