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

Side by Side Diff: cc/test/paths.cc

Issue 11474050: cc: Unify namespaces for all test files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years 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
« no previous file with comments | « cc/test/paths.h ('k') | cc/test/pixel_test_output_surface.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 "cc/test/paths.h" 5 #include "cc/test/paths.h"
6 6
7 #include "base/file_path.h" 7 #include "base/file_path.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "base/path_service.h" 9 #include "base/path_service.h"
10 10
11 namespace cc { 11 namespace cc {
12 namespace test {
13 12
14 bool PathProvider(int key, FilePath* result) { 13 bool PathProvider(int key, FilePath* result) {
15 FilePath cur; 14 FilePath cur;
16 switch (key) { 15 switch (key) {
17 // The following are only valid in the development environment, and 16 // The following are only valid in the development environment, and
18 // will fail if executed from an installed executable (because the 17 // will fail if executed from an installed executable (because the
19 // generated path won't exist). 18 // generated path won't exist).
20 case DIR_TEST_DATA: 19 case DIR_TEST_DATA:
21 if (!PathService::Get(base::DIR_SOURCE_ROOT, &cur)) 20 if (!PathService::Get(base::DIR_SOURCE_ROOT, &cur))
22 return false; 21 return false;
(...skipping 10 matching lines...) Expand all
33 *result = cur; 32 *result = cur;
34 return true; 33 return true;
35 } 34 }
36 35
37 // This cannot be done as a static initializer sadly since Visual Studio will 36 // This cannot be done as a static initializer sadly since Visual Studio will
38 // eliminate this object file if there is no direct entry point into it. 37 // eliminate this object file if there is no direct entry point into it.
39 void RegisterPathProvider() { 38 void RegisterPathProvider() {
40 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END); 39 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END);
41 } 40 }
42 41
43 } // namespace test
44 } // namespace cc 42 } // namespace cc
OLDNEW
« no previous file with comments | « cc/test/paths.h ('k') | cc/test/pixel_test_output_surface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698