[Smart Lock] Record a detailed UMA metric for each unlock attempt by Smart Lock users.
[chromium-blink-merge.git] / extensions / browser / granted_file_entry.h
blob97755bae3114967c69c99418962c1040b35838c4
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_
6 #define EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_
8 #include <string>
10 namespace extensions {
12 // Refers to a file entry that a renderer has been given access to.
13 struct GrantedFileEntry {
14 GrantedFileEntry();
15 ~GrantedFileEntry();
17 std::string id;
18 std::string filesystem_id;
19 std::string registered_name;
22 } // namespace extensions
24 #endif // EXTENSIONS_BROWSER_GRANTED_FILE_ENTRY_H_