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

Unified Diff: services/ui/gpu/interfaces/context_lost_reason_traits.h

Issue 2559113002: mus/gpu: Introduce the GpuServiceHost mojom interface. (Closed)
Patch Set: . Created 4 years 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 | « services/ui/gpu/interfaces/context_lost_reason.typemap ('k') | services/ui/gpu/interfaces/gpu_main.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/gpu/interfaces/context_lost_reason_traits.h
diff --git a/services/ui/gpu/interfaces/context_lost_reason_traits.h b/services/ui/gpu/interfaces/context_lost_reason_traits.h
new file mode 100644
index 0000000000000000000000000000000000000000..92311a322061136c593c731409c5bf1dc0e834fa
--- /dev/null
+++ b/services/ui/gpu/interfaces/context_lost_reason_traits.h
@@ -0,0 +1,68 @@
+// 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 SERVICES_UI_GPU_INTERFACES_CONTEXT_LOST_REASON_TRAITS_H_
+#define SERVICES_UI_GPU_INTERFACES_CONTEXT_LOST_REASON_TRAITS_H_
+
+#include "gpu/command_buffer/common/constants.h"
+#include "services/ui/gpu/interfaces/context_lost_reason.mojom.h"
+
+namespace mojo {
+
+template <>
+struct EnumTraits<ui::mojom::ContextLostReason, gpu::error::ContextLostReason> {
+ static ui::mojom::ContextLostReason ToMojom(
+ gpu::error::ContextLostReason reason) {
+ switch (reason) {
+ case gpu::error::kGuilty:
+ return ui::mojom::ContextLostReason::GUILTY;
+ case gpu::error::kInnocent:
+ return ui::mojom::ContextLostReason::INNOCENT;
+ case gpu::error::kUnknown:
+ return ui::mojom::ContextLostReason::UNKNOWN;
+ case gpu::error::kOutOfMemory:
+ return ui::mojom::ContextLostReason::OUT_OF_MEMORY;
+ case gpu::error::kMakeCurrentFailed:
+ return ui::mojom::ContextLostReason::MAKE_CURRENT_FAILED;
+ case gpu::error::kGpuChannelLost:
+ return ui::mojom::ContextLostReason::GPU_CHANNEL_LOST;
+ case gpu::error::kInvalidGpuMessage:
+ return ui::mojom::ContextLostReason::INVALID_GPU_MESSAGE;
+ }
+ NOTREACHED();
+ return ui::mojom::ContextLostReason::UNKNOWN;
+ }
+
+ static bool FromMojom(ui::mojom::ContextLostReason reason,
+ gpu::error::ContextLostReason* out) {
+ switch (reason) {
+ case ui::mojom::ContextLostReason::GUILTY:
+ *out = gpu::error::kGuilty;
+ return true;
+ case ui::mojom::ContextLostReason::INNOCENT:
+ *out = gpu::error::kInnocent;
+ return true;
+ case ui::mojom::ContextLostReason::UNKNOWN:
+ *out = gpu::error::kUnknown;
+ return true;
+ case ui::mojom::ContextLostReason::OUT_OF_MEMORY:
+ *out = gpu::error::kOutOfMemory;
+ return true;
+ case ui::mojom::ContextLostReason::MAKE_CURRENT_FAILED:
+ *out = gpu::error::kMakeCurrentFailed;
+ return true;
+ case ui::mojom::ContextLostReason::GPU_CHANNEL_LOST:
+ *out = gpu::error::kGpuChannelLost;
+ return true;
+ case ui::mojom::ContextLostReason::INVALID_GPU_MESSAGE:
+ *out = gpu::error::kInvalidGpuMessage;
+ return true;
+ }
+ return false;
+ }
+};
+
+} // namespace mojo
+
+#endif // SERVICES_UI_GPU_INTERFACES_CONTEXT_LOST_REASON_TRAITS_H_
« no previous file with comments | « services/ui/gpu/interfaces/context_lost_reason.typemap ('k') | services/ui/gpu/interfaces/gpu_main.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698