summaryrefslogtreecommitdiffstats
path: root/apps/browser/file_handler_util.h
blob: 1d0cfa384e952c57656b8c363b011e934cbe95a9 (plain)
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
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef APPS_BROWSER_FILE_HANDLER_UTIL_H_
#define APPS_BROWSER_FILE_HANDLER_UTIL_H_

#include <string>

namespace apps {
namespace file_handler_util {

// Refers to a file entry that a renderer has been given access to.
struct GrantedFileEntry {
  GrantedFileEntry();
  ~GrantedFileEntry();

  std::string id;
  std::string filesystem_id;
  std::string registered_name;
};

}  // namespace file_handler_util
}  // namespace apps

#endif  // APPS_BROWSER_FILE_HANDLER_UTIL_H_