blob: 79db279535e1b894b7689cb385cf063b8d68852a [file] [log] [blame]
nileshagrawal@chromium.org62001b92012-05-18 05:09:06 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
michaelbai@google.com2251c622011-06-22 07:34:50 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/file_util.h"
6
7#include "base/file_path.h"
nileshagrawal@chromium.org62001b92012-05-18 05:09:06 +09008#include "base/path_service.h"
michaelbai@google.com2251c622011-06-22 07:34:50 +09009
10namespace file_util {
11
mcgrathr@chromium.org569a4232011-12-07 03:07:05 +090012bool GetShmemTempDir(FilePath* path, bool executable) {
nileshagrawal@chromium.org62001b92012-05-18 05:09:06 +090013 return PathService::Get(base::DIR_CACHE, path);
michaelbai@google.com2251c622011-06-22 07:34:50 +090014}
15
16} // namespace file_util