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

Side by Side Diff: chrome/tools/launcher_support/chrome_launcher_support.h

Issue 10546149: Factor out logic to find chrome.exe from Omaha client state. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698