Loosen up heuristics for detecting account creation forms.
[chromium-blink-merge.git] / content / public / common / content_paths.h
blob3019762d6349b37394f30d07df45ace6bf73084a
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.
5 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_PATHS_H_
6 #define CONTENT_PUBLIC_COMMON_CONTENT_PATHS_H_
8 #include "content/common/content_export.h"
10 // This file declares path keys for the content module. These can be used with
11 // the PathService to access various special directories and files.
13 namespace content {
15 enum {
16 PATH_START = 4000,
18 // Path and filename to the executable to use for child processes.
19 CHILD_PROCESS_EXE = PATH_START,
21 // Valid only in development environment
22 DIR_TEST_DATA,
24 // Directory where the Media libraries reside.
25 DIR_MEDIA_LIBS,
26 // Returns the LayoutTests path for layout tests. For the current git
27 // workflow, it returns
28 // third_party/WebKit/LayoutTests
29 // On svn workflow (including build machines) and older git workflow, it
30 // returns
31 // content/test/data/layout_tests/LayoutTests
32 // See http://crbug.com/105104.
33 DIR_LAYOUT_TESTS,
35 PATH_END
38 // Call once to register the provider for the path keys defined above.
39 CONTENT_EXPORT void RegisterPathProvider();
41 } // namespace content
43 #endif // CONTENT_PUBLIC_COMMON_CONTENT_PATHS_H_