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

Unified Diff: content/public/browser/android/synchronous_compositor.cc

Issue 643993005: Remove limit on number of resources in cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: no cc change Created 6 years, 2 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 | « content/public/browser/android/synchronous_compositor.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/android/synchronous_compositor.cc
diff --git a/content/public/browser/android/synchronous_compositor.cc b/content/public/browser/android/synchronous_compositor.cc
deleted file mode 100644
index 25c4dc4cf3c7b42fa1341b84b9115ed98575aed8..0000000000000000000000000000000000000000
--- a/content/public/browser/android/synchronous_compositor.cc
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright 2013 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/public/browser/android/synchronous_compositor.h"
-
-namespace content {
-
-SynchronousCompositorMemoryPolicy::SynchronousCompositorMemoryPolicy()
- : bytes_limit(0), num_resources_limit(0) {}
-
-bool SynchronousCompositorMemoryPolicy::operator==(
- const SynchronousCompositorMemoryPolicy& other) const {
- return bytes_limit == other.bytes_limit &&
- num_resources_limit == other.num_resources_limit;
-}
-
-bool SynchronousCompositorMemoryPolicy::operator!=(
- const SynchronousCompositorMemoryPolicy& other) const {
- return !(*this == other);
-}
-
-} // namespace content
« no previous file with comments | « content/public/browser/android/synchronous_compositor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698