HomeSort by relevance Sort by last modified time
    Searched full:isdangerous (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/chrome/browser/download/
download_danger_prompt_browsertest.cc 128 EXPECT_CALL(download(), IsDangerous()).WillOnce(Return(false));
135 EXPECT_CALL(download(), IsDangerous()).WillOnce(Return(true));
143 EXPECT_CALL(download(), IsDangerous()).WillOnce(Return(true));
download_item_model.h 63 // IsDangerous() is true.
81 bool IsDangerous() const;
83 // Is this considered a malicious download? Implies IsDangerous().
87 // Implies IsDangerous() and MightBeMalicious().
download_item_model.cc 371 // Should only be called if IsDangerous().
372 DCHECK(IsDangerous());
414 // Should only be called if IsDangerous()
415 DCHECK(IsDangerous());
441 bool DownloadItemModel::IsDangerous() const {
442 return download_->IsDangerous();
446 if (!IsDangerous())
460 // We shouldn't get any of these due to the IsDangerous() test above.
499 if (!IsDangerous())
513 if (IsDangerous())
    [all...]
download_danger_prompt.cc 111 if (!download->IsDangerous() || download->IsDone()) {
download_item_model_unittest.cc 377 bool is_dangerous; // Expectation for IsDangerous().
416 EXPECT_CALL(item(), IsDangerous())
download_shelf_context_menu.cc 70 DCHECK(!download_model.IsDangerous() || download_model.MightBeMalicious());
chrome_download_manager_delegate_unittest.cc 226 ON_CALL(*item, IsDangerous())
download_browsertest.cc     [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/download/
download_item_controller_unittest.mm 140 ON_CALL(*download_item_, IsDangerous()).WillByDefault(Return(true));
157 ON_CALL(*download_item_, IsDangerous()).WillByDefault(Return(true));
168 ON_CALL(*download_item_, IsDangerous()).WillByDefault(Return(false));
download_item_mac.mm 33 if ([item_controller_ isDangerousMode] && !download_model_.IsDangerous()) {
download_item_controller.mm 218 if (downloadModel->IsDangerous()) {
download_shelf_controller.mm 378 if (isTransferDone && !download->IsDangerous()) {
  /external/chromium_org/content/browser/download/
download_item_impl_unittest.cc     [all...]
download_item_impl.cc 307 DCHECK(IsDangerous());
311 if (IsDone() || !IsDangerous())
332 DCHECK(IsDangerous());
397 if (IsDangerous()) {
668 bool DownloadItemImpl::IsDangerous() const {
    [all...]
download_item_impl.h 137 virtual bool IsDangerous() const OVERRIDE;
  /external/chromium_org/content/public/test/
mock_download_item.h 79 MOCK_CONST_METHOD0(IsDangerous, bool());
download_test_observer.cc 140 if (download->IsDangerous() &&
  /external/chromium_org/chrome/browser/safe_browsing/
download_protection_service.cc 165 virtual bool IsDangerous(SBThreatType threat_type) const = 0;
173 IsDangerous(threat_type) ?
249 virtual bool IsDangerous(SBThreatType threat_type) const OVERRIDE {
796 // DownloadItemImpl::IsDangerous (see crbug.com/413968).
    [all...]
  /external/chromium_org/chrome/browser/ui/views/download/
download_danger_prompt_views.cc 230 if (!download_->IsDangerous() || download_->IsDone()) {
download_item_view.cc 276 if (IsShowingWarningDialog() && !model_.IsDangerous()) {
279 } else if (!IsShowingWarningDialog() && model_.IsDangerous()) {
515 if (model_.IsDangerous())
    [all...]
download_shelf_view.cc 410 if (is_transfer_done && !download->IsDangerous()) {
  /external/chromium_org/chrome/browser/ui/webui/
downloads_dom_handler.cc 173 if (download_item->IsDangerous()) {
228 DCHECK(!download_item->IsDangerous());
  /frameworks/base/core/java/android/widget/
AppSecurityPermissions.java 554 final boolean isDangerous = (base == PermissionInfo.PROTECTION_DANGEROUS);
566 if ((isNormal || isDangerous) && (isRequired || wasGranted || isGranted)) {
  /external/chromium_org/content/browser/android/
download_controller_android_impl.cc 266 if (item->IsDangerous() && (item->GetState() != DownloadItem::CANCELLED))
  /external/chromium_org/content/public/browser/
download_item.h 255 virtual bool IsDangerous() const = 0;

Completed in 316 milliseconds

1 2