blob: 25c4dc4cf3c7b42fa1341b84b9115ed98575aed8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// 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
|