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

Unified Diff: gpu/config/gpu_info.cc

Issue 1725113002: gpu: Add out-of-line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 | « gpu/config/gpu_info.h ('k') | gpu/config/gpu_test_config.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/config/gpu_info.cc
diff --git a/gpu/config/gpu_info.cc b/gpu/config/gpu_info.cc
index e9f354b90db660517ab9141549686181d7e20be3..4b442f303a0a65aa643b706b1a9596c116b0e685 100644
--- a/gpu/config/gpu_info.cc
+++ b/gpu/config/gpu_info.cc
@@ -51,6 +51,9 @@ namespace gpu {
VideoDecodeAcceleratorCapabilities::VideoDecodeAcceleratorCapabilities()
: flags(0) {}
+VideoDecodeAcceleratorCapabilities::VideoDecodeAcceleratorCapabilities(
+ const VideoDecodeAcceleratorCapabilities& other) = default;
+
VideoDecodeAcceleratorCapabilities::~VideoDecodeAcceleratorCapabilities() {}
GPUInfo::GPUDevice::GPUDevice()
@@ -81,6 +84,8 @@ GPUInfo::GPUInfo()
jpeg_decode_accelerator_supported(false) {
}
+GPUInfo::GPUInfo(const GPUInfo& other) = default;
+
GPUInfo::~GPUInfo() { }
void GPUInfo::EnumerateFields(Enumerator* enumerator) const {
« no previous file with comments | « gpu/config/gpu_info.h ('k') | gpu/config/gpu_test_config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698