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

Side by Side Diff: extensions/common/extension_paths.cc

Issue 535673004: Gallery: Fix scrolling by touch in the mosaic view. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 #include "extensions/common/extension_paths.h" 5 #include "extensions/common/extension_paths.h"
6 6
7 #include "base/file_util.h" 7 #include "base/files/file_util.h"
8 #include "base/path_service.h" 8 #include "base/path_service.h"
9 9
10 namespace extensions { 10 namespace extensions {
11 11
12 bool PathProvider(int key, base::FilePath* result) { 12 bool PathProvider(int key, base::FilePath* result) {
13 if (key != DIR_TEST_DATA) 13 if (key != DIR_TEST_DATA)
14 return false; 14 return false;
15 base::FilePath cur; 15 base::FilePath cur;
16 if (!PathService::Get(base::DIR_SOURCE_ROOT, &cur)) 16 if (!PathService::Get(base::DIR_SOURCE_ROOT, &cur))
17 return false; 17 return false;
18 cur = cur.Append(FILE_PATH_LITERAL("extensions")); 18 cur = cur.Append(FILE_PATH_LITERAL("extensions"));
19 cur = cur.Append(FILE_PATH_LITERAL("test")); 19 cur = cur.Append(FILE_PATH_LITERAL("test"));
20 cur = cur.Append(FILE_PATH_LITERAL("data")); 20 cur = cur.Append(FILE_PATH_LITERAL("data"));
21 if (!base::PathExists(cur)) // we don't want to create this 21 if (!base::PathExists(cur)) // we don't want to create this
22 return false; 22 return false;
23 *result = cur; 23 *result = cur;
24 return true; 24 return true;
25 } 25 }
26 26
27 // This cannot be done as a static initializer sadly since Visual Studio will 27 // This cannot be done as a static initializer sadly since Visual Studio will
28 // eliminate this object file if there is no direct entry point into it. 28 // eliminate this object file if there is no direct entry point into it.
29 void RegisterPathProvider() { 29 void RegisterPathProvider() {
30 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END); 30 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END);
31 } 31 }
32 32
33 } // namespace extensions 33 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/extension_l10n_util_unittest.cc ('k') | extensions/common/extension_resource.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698