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

Unified Diff: chrome/browser/chromeos/drive/file_system_metadata.h

Issue 1215503010: OBSOLETE: Move (most of) chrome/browser/chromeos/drive into components/drive. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@drive-componentize-service
Patch Set: Created 5 years, 6 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/drive/file_system_metadata.h
diff --git a/chrome/browser/chromeos/drive/file_system_metadata.h b/chrome/browser/chromeos/drive/file_system_metadata.h
deleted file mode 100644
index 4ca0c873b9f61f8541194440431ed9dab219f6cc..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/drive/file_system_metadata.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright (c) 2012 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 CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_METADATA_H_
-#define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_METADATA_H_
-
-#include "base/basictypes.h"
-#include "base/time/time.h"
-#include "chrome/browser/chromeos/drive/file_errors.h"
-
-namespace drive {
-
-// Metadata of FileSystem. Used by FileSystem::GetMetadata().
-struct FileSystemMetadata {
- FileSystemMetadata();
- ~FileSystemMetadata();
-
- // The largest changestamp that the file system holds (may be different
- // from the one on the server)
- int64 largest_changestamp;
-
- // True if the resource metadata is now being fetched from the server.
- bool refreshing;
-
- // Time of the last update check.
- base::Time last_update_check_time;
-
- // Error code of the last update check.
- FileError last_update_check_error;
-};
-
-} // namespace drive
-
-#endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_METADATA_H_

Powered by Google App Engine
This is Rietveld 408576698