Index: content/browser/media_gallery/media_gallery_types.cc |
diff --git a/content/browser/media_gallery/media_gallery_types.cc b/content/browser/media_gallery/media_gallery_types.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6c637f4e270b5df58827170a81747b0869bd27a0 |
--- /dev/null |
+++ b/content/browser/media_gallery/media_gallery_types.cc |
@@ -0,0 +1,30 @@ |
+// 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 "content/browser/media_gallery/media_gallery_types.h" |
+ |
+namespace media_gallery { |
+ |
+CollectionRow::CollectionRow() { } |
Lei Zhang
2012/03/07 01:41:42
Do we need to initialize the POD struct members he
tpayne
2012/03/07 18:04:03
Done.
|
+ |
+CollectionRow::CollectionRow(FilePath path, |
+ base::Time last_modified_time, |
+ int entry_count, |
+ bool all_parsed) |
+ : path(path), |
+ last_modified_time(last_modified_time), |
+ entry_count(entry_count), |
+ all_parsed(all_parsed) { } |
+ |
+CollectionRow::~CollectionRow() { } |
+ |
+bool CollectionRow::operator==(const CollectionRow& row2) const { |
+ return id == row2.id |
Lei Zhang
2012/03/07 01:41:42
http://google-styleguide.googlecode.com/svn/trunk/
tpayne
2012/03/07 18:04:03
Done.
|
+ && path == row2.path |
+ && last_modified_time == row2.last_modified_time |
+ && entry_count == row2.entry_count |
+ && all_parsed == row2.all_parsed; |
+} |
+ |
+} // namespace media_gallery |