Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 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_TOOLS_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_ | |
| 6 #define CHROME_TOOLS_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_ | |
| 7 | |
|
grt (UTC plus 2)
2012/06/13 18:00:10
#pragma once
erikwright (departed)
2012/06/13 19:43:43
Done.
| |
| 8 class FilePath; | |
|
grt (UTC plus 2)
2012/06/13 18:00:10
since FilePath is used directly rather than just a
erikwright (departed)
2012/06/13 19:43:43
http://google-styleguide.googlecode.com/svn/trunk/
| |
| 9 | |
| 10 namespace chrome_launcher_support { | |
|
grt (UTC plus 2)
2012/06/13 18:00:10
please document the declarations in this file.
erikwright (departed)
2012/06/13 19:43:43
Done.
| |
| 11 | |
| 12 enum InstallationLevel { | |
| 13 USER_LEVEL_INSTALLATION, | |
| 14 SYSTEM_LEVEL_INSTALLATION | |
| 15 }; | |
| 16 | |
| 17 FilePath GetAnyChromePath(); | |
|
robertshield
2012/06/13 18:01:53
could you add a comment to these methods (mainly t
erikwright (departed)
2012/06/13 19:43:43
Done.
| |
| 18 FilePath GetChromePathForInstallationLevel(InstallationLevel level); | |
| 19 | |
| 20 } // namespace chrome_launcher_support | |
| 21 | |
| 22 #endif // CHROME_TOOLS_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_ | |
| OLD | NEW |