| 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/profile_startup.h" | 5 #include "chrome/browser/chromeos/profile_startup.h" |
| 6 | 6 |
| 7 #include "chrome/browser/chromeos/cros/cros_library.h" | 7 #include "chrome/browser/chromeos/cros/cros_library.h" |
| 8 #include "chrome/browser/chromeos/cros/network_library.h" | 8 #include "chrome/browser/chromeos/cros/network_library.h" |
| 9 #include "chrome/browser/chromeos/customization_document.h" | 9 #include "chrome/browser/chromeos/customization_document.h" |
| 10 #include "chrome/browser/chromeos/enterprise_extension_observer.h" | 10 #include "chrome/browser/chromeos/enterprise_extension_observer.h" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 static chromeos::SmsObserver* sms_observer = | 29 static chromeos::SmsObserver* sms_observer = |
| 30 new chromeos::SmsObserver(profile); | 30 new chromeos::SmsObserver(profile); |
| 31 chromeos::CrosLibrary::Get()->GetNetworkLibrary()-> | 31 chromeos::CrosLibrary::Get()->GetNetworkLibrary()-> |
| 32 AddNetworkManagerObserver(sms_observer); | 32 AddNetworkManagerObserver(sms_observer); |
| 33 | 33 |
| 34 profile->SetupChromeOSEnterpriseExtensionObserver(); | 34 profile->SetupChromeOSEnterpriseExtensionObserver(); |
| 35 } | 35 } |
| 36 } | 36 } |
| 37 | 37 |
| 38 } // namespace chromeos | 38 } // namespace chromeos |
| OLD | NEW |