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

Unified Diff: content/common/gpu/gpu_memory_buffer_factory_ozone.cc

Issue 594043004: content: Add missing "_" suffix to member variable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/gpu_memory_buffer_factory_ozone.cc
diff --git a/content/common/gpu/gpu_memory_buffer_factory_ozone.cc b/content/common/gpu/gpu_memory_buffer_factory_ozone.cc
index ca119e8999301b6d43342780c5277fd54e27be9a..0ec6d34a7c44ee2ece3701cf5ca5339fd5b09e26 100644
--- a/content/common/gpu/gpu_memory_buffer_factory_ozone.cc
+++ b/content/common/gpu/gpu_memory_buffer_factory_ozone.cc
@@ -22,7 +22,7 @@ class GpuMemoryBufferFactoryImpl : public GpuMemoryBufferFactory {
unsigned usage) OVERRIDE {
switch (handle.type) {
case gfx::OZONE_NATIVE_BUFFER:
- return ozone_buffer_factory.CreateGpuMemoryBuffer(
+ return ozone_buffer_factory_.CreateGpuMemoryBuffer(
handle.global_id, size, internalformat, usage)
? handle
: gfx::GpuMemoryBufferHandle();
@@ -35,7 +35,7 @@ class GpuMemoryBufferFactoryImpl : public GpuMemoryBufferFactory {
const gfx::GpuMemoryBufferHandle& handle) OVERRIDE {
switch (handle.type) {
case gfx::OZONE_NATIVE_BUFFER:
- ozone_buffer_factory.DestroyGpuMemoryBuffer(handle.global_id);
+ ozone_buffer_factory_.DestroyGpuMemoryBuffer(handle.global_id);
break;
default:
NOTREACHED();
@@ -61,7 +61,7 @@ class GpuMemoryBufferFactoryImpl : public GpuMemoryBufferFactory {
if (handle.global_id.secondary_id != client_id)
return scoped_refptr<gfx::GLImage>();
- return ozone_buffer_factory.CreateImageForGpuMemoryBuffer(
+ return ozone_buffer_factory_.CreateImageForGpuMemoryBuffer(
handle.global_id, size, internalformat);
default:
NOTREACHED();
@@ -70,7 +70,7 @@ class GpuMemoryBufferFactoryImpl : public GpuMemoryBufferFactory {
}
private:
- ui::GpuMemoryBufferFactoryOzoneNativeBuffer ozone_buffer_factory;
+ ui::GpuMemoryBufferFactoryOzoneNativeBuffer ozone_buffer_factory_;
};
} // namespace
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698