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

Unified Diff: ui/gfx/mojo/icc_profile_struct_traits.h

Issue 2381493003: Move ViewMsg_New to mojom (Closed)
Patch Set: . Created 4 years, 3 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
« no previous file with comments | « ui/gfx/mojo/icc_profile.typemap ('k') | ui/gfx/mojo/icc_profile_struct_traits.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/mojo/icc_profile_struct_traits.h
diff --git a/ui/gfx/mojo/icc_profile_struct_traits.h b/ui/gfx/mojo/icc_profile_struct_traits.h
new file mode 100644
index 0000000000000000000000000000000000000000..23ceda9dcfcf94caa6b0caf2f1397d6c663f4aac
--- /dev/null
+++ b/ui/gfx/mojo/icc_profile_struct_traits.h
@@ -0,0 +1,32 @@
+// Copyright 2016 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 UI_GFX_MOJO_ICC_PROFILE_STRUCT_TRAITS_H_
+#define UI_GFX_MOJO_ICC_PROFILE_STRUCT_TRAITS_H_
+
+#include <algorithm>
+#include <memory>
+
+#include "base/strings/string_piece.h"
+#include "mojo/public/cpp/bindings/struct_traits.h"
+#include "ui/gfx/icc_profile.h"
+#include "ui/gfx/mojo/icc_profile.mojom.h"
+
+namespace mojo {
+
+template <>
+struct StructTraits<gfx::mojom::ICCProfileDataView, gfx::ICCProfile> {
+ static bool valid(const gfx::ICCProfile& profile) { return profile.valid_; }
+ static base::StringPiece data(const gfx::ICCProfile& profile) {
+ return base::StringPiece(profile.data_.data(), profile.data_.size());
+ }
+ static uint64_t id(const gfx::ICCProfile& profile) { return profile.id_; }
+
+ static bool Read(gfx::mojom::ICCProfileDataView data,
+ gfx::ICCProfile* profile);
+};
+
+} // namespace mojo
+
+#endif // UI_GFX_MOJO_ICC_PROFILE_STRUCT_TRAITS_H_
« no previous file with comments | « ui/gfx/mojo/icc_profile.typemap ('k') | ui/gfx/mojo/icc_profile_struct_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698