blob: cfa9099c791f545e1b2e588ee22da0f1e77717cb [file] [log] [blame]
// Copyright 2015 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef BASE_BASE_PATHS_STARBOARD_H_
#define BASE_BASE_PATHS_STARBOARD_H_
// This file declares Starboard-specific path keys for the base module. These
// can be used with the PathService to access various special directories and
// files.
namespace base {
enum {
PATH_STARBOARD_START = 500,
DIR_CACHE, // Directory where to put cache data. Note this is
// *not* where the browser cache lives, but the
// browser cache can be a subdirectory.
DIR_HOME, // The root of the primary directory for a user (and their
// programs) to place their personal files.
PATH_STARBOARD_END
};
} // namespace base
#endif // BASE_BASE_PATHS_STARBOARD_H_