OLD | NEW |
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 #ifndef CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SITE_LIST_H_ | 5 #ifndef CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SITE_LIST_H_ |
6 #define CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SITE_LIST_H_ | 6 #define CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SITE_LIST_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/memory/scoped_vector.h" | |
16 #include "base/time/time.h" | 15 #include "base/time/time.h" |
17 | 16 |
18 class Profile; | 17 class Profile; |
19 | 18 |
20 namespace base { | 19 namespace base { |
21 class DictionaryValue; | 20 class DictionaryValue; |
22 class ListValue; | 21 class ListValue; |
23 class Value; | 22 class Value; |
24 } | 23 } |
25 | 24 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 base::TimeTicks start_time, | 77 base::TimeTicks start_time, |
79 const SupervisedUserSiteList::LoadedCallback& callback, | 78 const SupervisedUserSiteList::LoadedCallback& callback, |
80 scoped_ptr<base::Value> value); | 79 scoped_ptr<base::Value> value); |
81 | 80 |
82 std::vector<Site> sites_; | 81 std::vector<Site> sites_; |
83 | 82 |
84 DISALLOW_COPY_AND_ASSIGN(SupervisedUserSiteList); | 83 DISALLOW_COPY_AND_ASSIGN(SupervisedUserSiteList); |
85 }; | 84 }; |
86 | 85 |
87 #endif // CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SITE_LIST_H_ | 86 #endif // CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SITE_LIST_H_ |
OLD | NEW |