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

Side by Side Diff: chrome/browser/extensions/extension_system_impl.h

Issue 1869483002: kiosk: Defer app update until platform matches (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for comments from jenny Created 4 years, 8 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_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 std::unique_ptr<InstallGate> update_install_gate_; 127 std::unique_ptr<InstallGate> update_install_gate_;
128 128
129 // For verifying the contents of extensions read from disk. 129 // For verifying the contents of extensions read from disk.
130 scoped_refptr<ContentVerifier> content_verifier_; 130 scoped_refptr<ContentVerifier> content_verifier_;
131 131
132 std::unique_ptr<UninstallPingSender> uninstall_ping_sender_; 132 std::unique_ptr<UninstallPingSender> uninstall_ping_sender_;
133 133
134 #if defined(OS_CHROMEOS) 134 #if defined(OS_CHROMEOS)
135 std::unique_ptr<chromeos::DeviceLocalAccountManagementPolicyProvider> 135 std::unique_ptr<chromeos::DeviceLocalAccountManagementPolicyProvider>
136 device_local_account_management_policy_provider_; 136 device_local_account_management_policy_provider_;
137 std::unique_ptr<InstallGate> kiosk_app_update_install_gate_;
137 #endif 138 #endif
138 139
139 OneShotEvent ready_; 140 OneShotEvent ready_;
140 }; 141 };
141 142
142 Profile* profile_; 143 Profile* profile_;
143 144
144 Shared* shared_; 145 Shared* shared_;
145 146
146 DISALLOW_COPY_AND_ASSIGN(ExtensionSystemImpl); 147 DISALLOW_COPY_AND_ASSIGN(ExtensionSystemImpl);
147 }; 148 };
148 149
149 } // namespace extensions 150 } // namespace extensions
150 151
151 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ 152 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/kiosk_browsertest.cc ('k') | chrome/browser/extensions/extension_system_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698