Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(277)

Side by Side Diff: chrome/browser/chromeos/file_system_provider/observed_entry.h

Issue 663713002: [fsp] Extract ObservedEntry and ObservedEntries to a separate file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: Added missing files. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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.
4
5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OBSERVED_ENTRY_H_
6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OBSERVED_ENTRY_H_
7
8 #include <map>
9 #include <string>
10
11 #include "base/files/file_path.h"
12
13 namespace chromeos {
14 namespace file_system_provider {
15
16 struct ObservedEntry;
17
18 // List of observed entries.
19 typedef std::map<base::FilePath, ObservedEntry> ObservedEntries;
20
21 // Represents an observed entry on a file system.
22 struct ObservedEntry {
23 ObservedEntry();
24 ~ObservedEntry();
25
26 base::FilePath entry_path;
27 bool recursive;
28 std::string last_tag;
29 };
30
31 } // namespace file_system_provider
32 } // namespace chromeos
33
34 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OBSERVED_ENTRY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698