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

Side by Side Diff: chrome/test/chromedriver/chrome_finder.h

Issue 12848005: [chromedriver] Separate stuff of chrome from chromedriver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments and fix compile error on mac. Created 7 years, 9 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_TEST_CHROMEDRIVER_CHROME_FINDER_H_
6 #define CHROME_TEST_CHROMEDRIVER_CHROME_FINDER_H_
7
8 #include <vector>
9
10 #include "base/callback_forward.h"
11
12 namespace base {
13 class FilePath;
14 }
15
16 // Gets the path to the default Chrome executable. Returns true on success.
17 bool FindChrome(base::FilePath* browser_exe);
18
19 namespace internal {
20
21 bool FindExe(
22 const base::Callback<bool(const base::FilePath&)>& exists_func,
23 const std::vector<base::FilePath>& rel_paths,
24 const std::vector<base::FilePath>& locations,
25 base::FilePath* out_path);
26
27 } // namespace internal
28
29 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_FINDER_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/chrome_desktop_impl_unittest.cc ('k') | chrome/test/chromedriver/chrome_finder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698