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

Side by Side Diff: chrome/browser/supervised_user/supervised_user_service.cc

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 12 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/supervised_user/supervised_user_service.h" 5 #include "chrome/browser/supervised_user/supervised_user_service.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/files/file_util.h" 9 #include "base/files/file_util.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "base/path_service.h" 11 #include "base/path_service.h"
12 #include "base/prefs/pref_service.h" 12 #include "base/prefs/pref_service.h"
13 #include "base/strings/stringprintf.h" 13 #include "base/strings/stringprintf.h"
14 #include "base/strings/utf_string_conversions.h" 14 #include "base/strings/utf_string_conversions.h"
15 #include "base/task_runner_util.h" 15 #include "base/task_runner_util.h"
16 #include "base/version.h" 16 #include "base/version.h"
17 #include "build/build_config.h"
17 #include "chrome/browser/browser_process.h" 18 #include "chrome/browser/browser_process.h"
18 #include "chrome/browser/component_updater/supervised_user_whitelist_installer.h " 19 #include "chrome/browser/component_updater/supervised_user_whitelist_installer.h "
19 #include "chrome/browser/net/file_downloader.h" 20 #include "chrome/browser/net/file_downloader.h"
20 #include "chrome/browser/profiles/profile.h" 21 #include "chrome/browser/profiles/profile.h"
21 #include "chrome/browser/profiles/profile_info_cache.h" 22 #include "chrome/browser/profiles/profile_info_cache.h"
22 #include "chrome/browser/profiles/profile_manager.h" 23 #include "chrome/browser/profiles/profile_manager.h"
23 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" 24 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
24 #include "chrome/browser/signin/signin_manager_factory.h" 25 #include "chrome/browser/signin/signin_manager_factory.h"
25 #include "chrome/browser/supervised_user/experimental/supervised_user_filtering_ switches.h" 26 #include "chrome/browser/supervised_user/experimental/supervised_user_filtering_ switches.h"
26 #include "chrome/browser/supervised_user/permission_request_creator.h" 27 #include "chrome/browser/supervised_user/permission_request_creator.h"
(...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after
999 1000
1000 is_profile_active_ = profile_became_active; 1001 is_profile_active_ = profile_became_active;
1001 } 1002 }
1002 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) 1003 #endif // !defined(OS_ANDROID) && !defined(OS_IOS)
1003 1004
1004 void SupervisedUserService::OnSiteListUpdated() { 1005 void SupervisedUserService::OnSiteListUpdated() {
1005 FOR_EACH_OBSERVER( 1006 FOR_EACH_OBSERVER(
1006 SupervisedUserServiceObserver, observer_list_, OnURLFilterChanged()); 1007 SupervisedUserServiceObserver, observer_list_, OnURLFilterChanged());
1007 } 1008 }
1008 1009
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698