| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/browser/ui/views/download/download_item_view.h" | 5 #include "chrome/browser/ui/views/download/download_item_view.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/callback.h" | 9 #include "base/callback.h" |
| 10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| (...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 state->state = ui::AccessibilityTypes::STATE_HASPOPUP; | 647 state->state = ui::AccessibilityTypes::STATE_HASPOPUP; |
| 648 } | 648 } |
| 649 } | 649 } |
| 650 | 650 |
| 651 void DownloadItemView::ButtonPressed( | 651 void DownloadItemView::ButtonPressed( |
| 652 views::Button* sender, const views::Event& event) { | 652 views::Button* sender, const views::Event& event) { |
| 653 if (sender == discard_button_) { | 653 if (sender == discard_button_) { |
| 654 UMA_HISTOGRAM_LONG_TIMES("clickjacking.discard_download", | 654 UMA_HISTOGRAM_LONG_TIMES("clickjacking.discard_download", |
| 655 base::Time::Now() - creation_time_); | 655 base::Time::Now() - creation_time_); |
| 656 if (download_->IsPartialDownload()) | 656 if (download_->IsPartialDownload()) |
| 657 download_->Cancel(true); | 657 download_->Cancel(); |
| 658 download_->Delete(DownloadItem::DELETE_DUE_TO_USER_DISCARD); | 658 download_->Delete(DownloadItem::DELETE_DUE_TO_USER_DISCARD); |
| 659 // WARNING: we are deleted at this point. Don't access 'this'. | 659 // WARNING: we are deleted at this point. Don't access 'this'. |
| 660 } else if (sender == save_button_) { | 660 } else if (sender == save_button_) { |
| 661 // The user has confirmed a dangerous download. We'd record how quickly the | 661 // The user has confirmed a dangerous download. We'd record how quickly the |
| 662 // user did this to detect whether we're being clickjacked. | 662 // user did this to detect whether we're being clickjacked. |
| 663 UMA_HISTOGRAM_LONG_TIMES("clickjacking.save_download", | 663 UMA_HISTOGRAM_LONG_TIMES("clickjacking.save_download", |
| 664 base::Time::Now() - creation_time_); | 664 base::Time::Now() - creation_time_); |
| 665 // This will change the state and notify us. | 665 // This will change the state and notify us. |
| 666 download_->DangerousDownloadValidated(); | 666 download_->DangerousDownloadValidated(); |
| 667 } | 667 } |
| (...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1115 // If the name has changed, notify assistive technology that the name | 1115 // If the name has changed, notify assistive technology that the name |
| 1116 // has changed so they can announce it immediately. | 1116 // has changed so they can announce it immediately. |
| 1117 if (new_name != accessible_name_) { | 1117 if (new_name != accessible_name_) { |
| 1118 accessible_name_ = new_name; | 1118 accessible_name_ = new_name; |
| 1119 if (GetWidget()) { | 1119 if (GetWidget()) { |
| 1120 GetWidget()->NotifyAccessibilityEvent( | 1120 GetWidget()->NotifyAccessibilityEvent( |
| 1121 this, ui::AccessibilityTypes::EVENT_NAME_CHANGED, true); | 1121 this, ui::AccessibilityTypes::EVENT_NAME_CHANGED, true); |
| 1122 } | 1122 } |
| 1123 } | 1123 } |
| 1124 } | 1124 } |
| OLD | NEW |