| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/outdated_upgrade_bubble_view.h" | 5 #include "chrome/browser/ui/views/outdated_upgrade_bubble_view.h" |
| 6 | 6 |
| 7 #include "base/metrics/histogram.h" | 7 #include "base/metrics/histogram.h" |
| 8 #include "base/path_service.h" | |
| 9 #include "base/prefs/pref_service.h" | 8 #include "base/prefs/pref_service.h" |
| 10 #include "chrome/browser/browser_process.h" | 9 #include "chrome/browser/browser_process.h" |
| 11 #include "chrome/browser/ui/views/elevation_icon_setter.h" | 10 #include "chrome/browser/ui/views/elevation_icon_setter.h" |
| 12 #include "chrome/browser/upgrade_detector.h" | 11 #include "chrome/browser/upgrade_detector.h" |
| 13 #include "chrome/common/pref_names.h" | 12 #include "chrome/common/pref_names.h" |
| 14 #include "chrome/grit/chromium_strings.h" | 13 #include "chrome/grit/chromium_strings.h" |
| 15 #include "chrome/grit/generated_resources.h" | 14 #include "chrome/grit/generated_resources.h" |
| 16 #include "content/public/browser/browser_thread.h" | 15 #include "content/public/browser/browser_thread.h" |
| 17 #include "content/public/browser/page_navigator.h" | 16 #include "content/public/browser/page_navigator.h" |
| 18 #include "content/public/browser/user_metrics.h" | 17 #include "content/public/browser/user_metrics.h" |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 base::Bind(&google_update::ElevateIfNeededToReenableUpdates)); | 235 base::Bind(&google_update::ElevateIfNeededToReenableUpdates)); |
| 237 #endif // defined(OS_WIN) | 236 #endif // defined(OS_WIN) |
| 238 } | 237 } |
| 239 } else { | 238 } else { |
| 240 DCHECK_EQ(later_button_, sender); | 239 DCHECK_EQ(later_button_, sender); |
| 241 content::RecordAction( | 240 content::RecordAction( |
| 242 base::UserMetricsAction("OutdatedUpgradeBubble.Later")); | 241 base::UserMetricsAction("OutdatedUpgradeBubble.Later")); |
| 243 } | 242 } |
| 244 GetWidget()->Close(); | 243 GetWidget()->Close(); |
| 245 } | 244 } |
| OLD | NEW |