| 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_COMPONENT_UPDATER_SUPERVISED_USER_WHITELIST_INSTALLER_H_ | 5 #ifndef CHROME_BROWSER_COMPONENT_UPDATER_SUPERVISED_USER_WHITELIST_INSTALLER_H_ |
| 6 #define CHROME_BROWSER_COMPONENT_UPDATER_SUPERVISED_USER_WHITELIST_INSTALLER_H_ | 6 #define CHROME_BROWSER_COMPONENT_UPDATER_SUPERVISED_USER_WHITELIST_INSTALLER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <set> | 10 #include <set> |
| 9 #include <string> | 11 #include <string> |
| 10 #include <vector> | 12 #include <vector> |
| 11 | 13 |
| 12 #include "base/callback_forward.h" | 14 #include "base/callback_forward.h" |
| 13 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/strings/string16.h" | 16 #include "base/strings/string16.h" |
| 15 | 17 |
| 16 namespace base { | 18 namespace base { |
| 17 class FilePath; | 19 class FilePath; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 // called from the implementation subclass, and declared here so that the | 83 // called from the implementation subclass, and declared here so that the |
| 82 // OnDemandUpdater can friend this class and the implementation subclass can | 84 // OnDemandUpdater can friend this class and the implementation subclass can |
| 83 // live in an anonymous namespace. | 85 // live in an anonymous namespace. |
| 84 static void TriggerComponentUpdate(OnDemandUpdater* updater, | 86 static void TriggerComponentUpdate(OnDemandUpdater* updater, |
| 85 const std::string& crx_id); | 87 const std::string& crx_id); |
| 86 }; | 88 }; |
| 87 | 89 |
| 88 } // namespace component_updater | 90 } // namespace component_updater |
| 89 | 91 |
| 90 #endif // CHROME_BROWSER_COMPONENT_UPDATER_SUPERVISED_USER_WHITELIST_INSTALLER_
H_ | 92 #endif // CHROME_BROWSER_COMPONENT_UPDATER_SUPERVISED_USER_WHITELIST_INSTALLER_
H_ |
| OLD | NEW |