chromium/ios/chrome/browser/shared/model/paths/paths.h

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef IOS_CHROME_BROWSER_SHARED_MODEL_PATHS_PATHS_H_
#define IOS_CHROME_BROWSER_SHARED_MODEL_PATHS_PATHS_H_

// This file declares path keys for the Chrome on iOS application.  These can be
// used with the PathService to access various special directories and files.

namespace ios {

enum {
  PATH_START = 2000,

  DIR_USER_DATA = PATH_START,  // Directory where user data can be written.
  DIR_CRASH_DUMPS,             // Directory where crash dumps are written.
  DIR_TEST_DATA,               // Directory where unit test data resides.
  DIR_GLOBAL_GCM_STORE,        // Directory where the global GCM instance
                               // stores its data.
  FILE_LOCAL_STATE,            // Path and filename to the file in which
                               // installation-specific state is saved.
  FILE_RESOURCES_PACK,         // Full path to the .pak file containing binary
                               // data (e.g. html files and images used by
                               // internal pages).
  DIR_OPTIMIZATION_GUIDE_PREDICTION_MODELS,  // Directory where verified models
                                             // downloaded by the Optimization
                                             // Guide are stored.
  PATH_END
};

// Call once to register the provider for the path keys defined above.
void RegisterPathProvider();

}  // namespace ios

#endif  // IOS_CHROME_BROWSER_SHARED_MODEL_PATHS_PATHS_H_