WebKit Roll 88523:88542.
[chromium-blink-merge.git] / app / app_paths.h
blobd1cf12f0d5e48f380558f894cfdfef0ef628cccd
1 // Copyright (c) 2010 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 APP_APP_PATHS_H_
6 #define APP_APP_PATHS_H_
7 #pragma once
9 // This file declares path keys for the app module. These can be used with
10 // the PathService to access various special directories and files.
12 namespace app {
14 enum {
15 PATH_START = 2000,
17 DIR_EXTERNAL_EXTENSIONS, // Directory where installer places .crx files.
19 PATH_END
22 // Call once to register the provider for the path keys defined above.
23 void RegisterPathProvider();
25 } // namespace app
27 #endif // APP_APP_PATHS_H_