OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_INSTALLER_UTIL_APP_LAUNCHER_INSTALLER_UTIL_H_ | |
6 #define CHROME_INSTALLER_UTIL_APP_LAUNCHER_INSTALLER_UTIL_H_ | |
7 | |
8 #if defined(GOOGLE_CHROME_BUILD) | |
9 | |
10 #include "base/strings/string16.h" | |
11 | |
12 namespace installer { | |
13 namespace app_launcher_installer { | |
grt (UTC plus 2)
2015/01/09 18:57:04
nix this namespace, too
huangs
2015/01/18 01:18:24
Will do so once you insist.
| |
14 | |
15 void RemoveDeprecatedModifiers(base::string16* value); | |
16 | |
17 } // namespace app_launcher_installer | |
18 } // namespace installer | |
19 | |
20 #endif // defined(GOOGLE_CHROME_BUILD) | |
21 | |
22 #endif // CHROME_INSTALLER_UTIL_APP_LAUNCHER_INSTALLER_UTIL_H_ | |
OLD | NEW |