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

Unified Diff: cc/proto/gpu_conversions.cc

Issue 1490513005: Add support for ManagedMemoryPolicy (de)serialization (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@renderer-settings
Patch Set: Rebase on top of origin/master Created 5 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 | « cc/proto/gpu_conversions.h ('k') | cc/proto/gpu_conversions_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/proto/gpu_conversions.cc
diff --git a/cc/proto/gpu_conversions.cc b/cc/proto/gpu_conversions.cc
new file mode 100644
index 0000000000000000000000000000000000000000..8454aed0ffcf59e171f9f1e307e2ec791a11e7fb
--- /dev/null
+++ b/cc/proto/gpu_conversions.cc
@@ -0,0 +1,46 @@
+// Copyright 2015 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 "cc/proto/gpu_conversions.h"
+
+#include "base/logging.h"
+#include "cc/proto/memory_allocation.pb.h"
+#include "gpu/command_buffer/common/gpu_memory_allocation.h"
+
+namespace cc {
+
+proto::MemoryAllocation::PriorityCutoff MemoryAllocationPriorityCutoffToProto(
+ const gpu::MemoryAllocation::PriorityCutoff& priority_cutoff) {
+ switch (priority_cutoff) {
+ case gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_NOTHING:
+ return proto::MemoryAllocation_PriorityCutoff_ALLOW_NOTHING;
+ case gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_REQUIRED_ONLY:
+ return proto::MemoryAllocation_PriorityCutoff_ALLOW_REQUIRED_ONLY;
+ case gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_NICE_TO_HAVE:
+ return proto::MemoryAllocation_PriorityCutoff_ALLOW_NICE_TO_HAVE;
+ case gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_EVERYTHING:
+ return proto::MemoryAllocation_PriorityCutoff_ALLOW_EVERYTHING;
+ }
+ return proto::MemoryAllocation_PriorityCutoff_UNKNOWN;
+}
+
+gpu::MemoryAllocation::PriorityCutoff MemoryAllocationPriorityCutoffFromProto(
+ const proto::MemoryAllocation::PriorityCutoff& priority_cutoff) {
+ switch (priority_cutoff) {
+ case proto::MemoryAllocation_PriorityCutoff_ALLOW_NOTHING:
+ return gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_NOTHING;
+ case proto::MemoryAllocation_PriorityCutoff_ALLOW_REQUIRED_ONLY:
+ return gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_REQUIRED_ONLY;
+ case proto::MemoryAllocation_PriorityCutoff_ALLOW_NICE_TO_HAVE:
+ return gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_NICE_TO_HAVE;
+ case proto::MemoryAllocation_PriorityCutoff_ALLOW_EVERYTHING:
+ return gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_EVERYTHING;
+ case proto::MemoryAllocation_PriorityCutoff_UNKNOWN:
+ NOTREACHED() << "Received MemoryAllocation::PriorityCutoff_UNKNOWN";
+ return gpu::MemoryAllocation::PriorityCutoff::CUTOFF_LAST;
+ }
+ return gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_NOTHING;
+}
+
+} // namespace cc
« no previous file with comments | « cc/proto/gpu_conversions.h ('k') | cc/proto/gpu_conversions_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698