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

Unified Diff: chrome/browser/chromeos/drive/drive_file_system_metadata.cc

Issue 11343004: drive: Add "Delta Update Status" section to chrome:drive-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 1 month 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/drive_file_system_metadata.cc
diff --git a/chrome/browser/chromeos/drive/drive_file_system_metadata.cc b/chrome/browser/chromeos/drive/drive_file_system_metadata.cc
new file mode 100644
index 0000000000000000000000000000000000000000..599ad36a852c62a9fe25de390ff1f80ed4dfe3d8
--- /dev/null
+++ b/chrome/browser/chromeos/drive/drive_file_system_metadata.cc
@@ -0,0 +1,19 @@
+// 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.
+
+#include "chrome/browser/chromeos/drive/drive_file_system_metadata.h"
+
+namespace drive {
+
+DriveFileSystemMetadata::DriveFileSystemMetadata()
+ : largest_changestamp(0),
+ push_notification_enabled(false),
+ polling_interval_sec(0),
+ last_update_check_error(DRIVE_FILE_OK) {
+}
+
+DriveFileSystemMetadata::~DriveFileSystemMetadata() {
+}
+
+} // namespace drive
« no previous file with comments | « chrome/browser/chromeos/drive/drive_file_system_metadata.h ('k') | chrome/browser/resources/chromeos/drive_internals.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698