OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/arc/arc_auth_notification.h" | 5 #include "chrome/browser/chromeos/arc/arc_auth_notification.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 #include <string> | 8 #include <string> |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
11 #include "ash/common/system/chromeos/devicetype_utils.h" | 11 #include "ash/system/devicetype_utils.h" |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
13 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
14 #include "chrome/browser/chromeos/arc/arc_optin_uma.h" | 14 #include "chrome/browser/chromeos/arc/arc_optin_uma.h" |
15 #include "chrome/browser/chromeos/arc/arc_util.h" | 15 #include "chrome/browser/chromeos/arc/arc_util.h" |
16 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
17 #include "chrome/browser/ui/ash/multi_user/multi_user_util.h" | 17 #include "chrome/browser/ui/ash/multi_user/multi_user_util.h" |
18 #include "chrome/grit/generated_resources.h" | 18 #include "chrome/grit/generated_resources.h" |
19 #include "chrome/grit/theme_resources.h" | 19 #include "chrome/grit/theme_resources.h" |
20 #include "components/signin/core/account_id/account_id.h" | 20 #include "components/signin/core/account_id/account_id.h" |
21 #include "ui/base/l10n/l10n_util.h" | 21 #include "ui/base/l10n/l10n_util.h" |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 message_center::MessageCenter::Get()->RemoveNotification( | 132 message_center::MessageCenter::Get()->RemoveNotification( |
133 kFirstRunNotificationId, false); | 133 kFirstRunNotificationId, false); |
134 } | 134 } |
135 | 135 |
136 // static | 136 // static |
137 void ArcAuthNotification::DisableForTesting() { | 137 void ArcAuthNotification::DisableForTesting() { |
138 g_disabled = true; | 138 g_disabled = true; |
139 } | 139 } |
140 | 140 |
141 } // namespace arc | 141 } // namespace arc |
OLD | NEW |