summaryrefslogtreecommitdiff
path: root/chromium/chrome/common/media_galleries
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/common/media_galleries')
-rw-r--r--chromium/chrome/common/media_galleries/OWNERS2
-rw-r--r--chromium/chrome/common/media_galleries/metadata_types.h19
2 files changed, 21 insertions, 0 deletions
diff --git a/chromium/chrome/common/media_galleries/OWNERS b/chromium/chrome/common/media_galleries/OWNERS
new file mode 100644
index 00000000000..65216a6bcad
--- /dev/null
+++ b/chromium/chrome/common/media_galleries/OWNERS
@@ -0,0 +1,2 @@
+file://chrome/browser/media_galleries/OWNERS
+# COMPONENT: Platform>Apps>MediaGalleries
diff --git a/chromium/chrome/common/media_galleries/metadata_types.h b/chromium/chrome/common/media_galleries/metadata_types.h
new file mode 100644
index 00000000000..d9aa515b6fa
--- /dev/null
+++ b/chromium/chrome/common/media_galleries/metadata_types.h
@@ -0,0 +1,19 @@
+// 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.
+
+#ifndef CHROME_COMMON_MEDIA_GALLERIES_METADATA_TYPES_H_
+#define CHROME_COMMON_MEDIA_GALLERIES_METADATA_TYPES_H_
+
+#include <string>
+
+namespace metadata {
+
+struct AttachedImage {
+ std::string type;
+ std::string data;
+};
+
+} // namespace metadata
+
+#endif // CHROME_COMMON_MEDIA_GALLERIES_METADATA_TYPES_H_