[go: nahoru, domu]

blob: 6ac9def8c1da7f0e136302f6cf112db7a5683807 [file] [log] [blame]
nileshagrawal@chromium.org0eae7eb2012-05-17 20:09:061// Copyright (c) 2012 The Chromium Authors. All rights reserved.
michaelbai@google.comf7d69972011-06-21 22:34:502// 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
brettw@chromium.org57999812013-02-24 05:40:527#include "base/files/file_path.h"
nileshagrawal@chromium.org0eae7eb2012-05-17 20:09:068#include "base/path_service.h"
michaelbai@google.comf7d69972011-06-21 22:34:509
10namespace file_util {
11
brettw@chromium.orgaaa6df42013-02-17 19:36:0312bool GetShmemTempDir(base::FilePath* path, bool executable) {
nileshagrawal@chromium.org0eae7eb2012-05-17 20:09:0613 return PathService::Get(base::DIR_CACHE, path);
michaelbai@google.comf7d69972011-06-21 22:34:5014}
15
16} // namespace file_util