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

Unified Diff: chrome/browser/chromeos/file_system_provider/observed_entry.cc

Issue 674413002: [fsp] Rename ObserveEntry with AddWatcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/file_system_provider/observed_entry.cc
diff --git a/chrome/browser/chromeos/file_system_provider/observed_entry.cc b/chrome/browser/chromeos/file_system_provider/observed_entry.cc
deleted file mode 100644
index b9ed60e1f309bcebf45809c838026235459d2759..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/file_system_provider/observed_entry.cc
+++ /dev/null
@@ -1,38 +0,0 @@
-// 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.
-
-#include "chrome/browser/chromeos/file_system_provider/observed_entry.h"
-
-namespace chromeos {
-namespace file_system_provider {
-
-ObservedEntryKey::ObservedEntryKey(const base::FilePath& entry_path,
- bool recursive)
- : entry_path(entry_path), recursive(recursive) {
-}
-
-ObservedEntryKey::~ObservedEntryKey() {
-}
-
-bool ObservedEntryKey::Comparator::operator()(const ObservedEntryKey& a,
- const ObservedEntryKey& b) const {
- if (a.entry_path != b.entry_path)
- return a.entry_path < b.entry_path;
- return a.recursive < b.recursive;
-}
-
-Subscriber::Subscriber() : persistent(false) {
-}
-
-Subscriber::~Subscriber() {
-}
-
-ObservedEntry::ObservedEntry() : recursive(false) {
-}
-
-ObservedEntry::~ObservedEntry() {
-}
-
-} // namespace file_system_provider
-} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698