OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/chromeos/status/data_promo_notification.h" | 5 #include "chrome/browser/chromeos/status/data_promo_notification.h" |
6 | 6 |
7 #include "ash/shell.h" | 7 #include "ash/shell.h" |
8 #include "ash/shell_window_ids.h" | 8 #include "ash/shell_window_ids.h" |
9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
10 #include "chrome/browser/browser_process.h" | 10 #include "chrome/browser/browser_process.h" |
11 #include "chrome/browser/chromeos/cros/cros_library.h" | 11 #include "chrome/browser/chromeos/cros/cros_library.h" |
12 #include "chrome/browser/chromeos/cros/network_library.h" | 12 #include "chrome/browser/chromeos/cros/network_library.h" |
13 #include "chrome/browser/chromeos/login/helper.h" | 13 #include "chrome/browser/chromeos/login/helper.h" |
14 #include "chrome/browser/chromeos/login/message_bubble.h" | 14 #include "chrome/browser/chromeos/login/message_bubble.h" |
15 #include "chrome/browser/chromeos/login/user_manager.h" | 15 #include "chrome/browser/chromeos/login/user_manager.h" |
16 #include "chrome/browser/chromeos/mobile_config.h" | 16 #include "chrome/browser/chromeos/mobile_config.h" |
17 #include "chrome/browser/prefs/pref_service.h" | 17 #include "chrome/browser/prefs/pref_service.h" |
18 #include "chrome/browser/profiles/profile.h" | 18 #include "chrome/browser/profiles/profile.h" |
19 #include "chrome/browser/profiles/profile_manager.h" | 19 #include "chrome/browser/profiles/profile_manager.h" |
20 #include "chrome/browser/ui/browser.h" | 20 #include "chrome/browser/ui/browser.h" |
21 #include "chrome/browser/ui/browser_list.h" | 21 #include "chrome/browser/ui/browser_list.h" |
22 #include "chrome/browser/ui/views/window.h" | |
23 #include "chrome/common/pref_names.h" | 22 #include "chrome/common/pref_names.h" |
24 #include "grit/generated_resources.h" | 23 #include "grit/generated_resources.h" |
25 #include "grit/theme_resources.h" | 24 #include "grit/theme_resources.h" |
26 #include "ui/base/l10n/l10n_util.h" | 25 #include "ui/base/l10n/l10n_util.h" |
27 #include "ui/base/resource/resource_bundle.h" | 26 #include "ui/base/resource/resource_bundle.h" |
28 #include "ui/views/view.h" | 27 #include "ui/views/view.h" |
29 | 28 |
30 namespace { | 29 namespace { |
31 | 30 |
32 // Time in milliseconds to delay showing of promo | 31 // Time in milliseconds to delay showing of promo |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 void DataPromoNotification::OnWidgetClosing(views::Widget* widget) { | 229 void DataPromoNotification::OnWidgetClosing(views::Widget* widget) { |
231 if (!mobile_data_bubble_ || mobile_data_bubble_->GetWidget() != widget) | 230 if (!mobile_data_bubble_ || mobile_data_bubble_->GetWidget() != widget) |
232 return; | 231 return; |
233 | 232 |
234 mobile_data_bubble_ = NULL; | 233 mobile_data_bubble_ = NULL; |
235 deal_info_url_.clear(); | 234 deal_info_url_.clear(); |
236 deal_topup_url_.clear(); | 235 deal_topup_url_.clear(); |
237 } | 236 } |
238 | 237 |
239 } // namespace chromeos | 238 } // namespace chromeos |
OLD | NEW |