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

Side by Side Diff: chrome/browser/component_updater/supervised_user_whitelist_installer.h

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 #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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698