summaryrefslogtreecommitdiffstats
path: root/extensions/browser/granted_file_entry.h
blob: 97755bae3114967c69c99418962c1040b35838c4 (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
// 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 EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_
#define EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_

#include <string>

namespace extensions {

// 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 extensions

#endif  // EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_