Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(716)

Side by Side Diff: chrome/browser/chromeos/settings/owner_manager.cc

Issue 10824112: Move Chrome OS device settings stuff to chrome/browser/chromeos/settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/login/owner_manager.h" 5 #include "chrome/browser/chromeos/settings/owner_manager.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/file_path.h" 11 #include "base/file_path.h"
12 #include "base/file_util.h" 12 #include "base/file_util.h"
13 #include "chrome/browser/browser_process.h" 13 #include "chrome/browser/browser_process.h"
14 #include "chrome/browser/chromeos/boot_times_loader.h" 14 #include "chrome/browser/chromeos/boot_times_loader.h"
15 #include "chrome/browser/chromeos/login/signed_settings_cache.h" 15 #include "chrome/browser/chromeos/settings/signed_settings_cache.h"
16 #include "chrome/common/chrome_notification_types.h" 16 #include "chrome/common/chrome_notification_types.h"
17 #include "content/public/browser/browser_thread.h" 17 #include "content/public/browser/browser_thread.h"
18 #include "content/public/browser/notification_service.h" 18 #include "content/public/browser/notification_service.h"
19 19
20 using content::BrowserThread; 20 using content::BrowserThread;
21 21
22 namespace chromeos { 22 namespace chromeos {
23 23
24 OwnerManager::OwnerManager() 24 OwnerManager::OwnerManager()
25 : private_key_(NULL), 25 : private_key_(NULL),
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 void OwnerManager::SendNotification( 138 void OwnerManager::SendNotification(
139 int type, 139 int type,
140 const content::NotificationDetails& details) { 140 const content::NotificationDetails& details) {
141 content::NotificationService::current()->Notify( 141 content::NotificationService::current()->Notify(
142 type, 142 type,
143 content::NotificationService::AllSources(), 143 content::NotificationService::AllSources(),
144 details); 144 details);
145 } 145 }
146 146
147 } // namespace chromeos 147 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/settings/owner_manager.h ('k') | chrome/browser/chromeos/settings/owner_manager_unittest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698