1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29

content / shell / browser / shell_paths.h [blame]

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

#ifndef CONTENT_SHELL_BROWSER_SHELL_PATHS_H_
#define CONTENT_SHELL_BROWSER_SHELL_PATHS_H_

#include "build/build_config.h"

namespace content {

enum {
  SHELL_PATH_START = 12000,

  // Directory where user data can be written.
  SHELL_DIR_USER_DATA = SHELL_PATH_START,

  // TODO(jam): move from content/common since it's test only.
  // DIR_TEST_DATA,

  SHELL_PATH_END
};

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

}  // namespace content

#endif  // CONTENT_SHELL_BROWSER_SHELL_PATHS_H_