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

Unified Diff: ui/gfx/native_widget_types.h

Issue 111063003: Aura: Don't create GL context for CreateSharedSurfaceHandle() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: try to make tests happy by still creating shared context Created 6 years, 11 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/renderer/render_thread_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/native_widget_types.h
diff --git a/ui/gfx/native_widget_types.h b/ui/gfx/native_widget_types.h
index bd14ed50f77fc62ec9f1fc96a06fa52f2076818a..d6c3fcb387e51b3c818cf6ad549defa54af77aae 100644
--- a/ui/gfx/native_widget_types.h
+++ b/ui/gfx/native_widget_types.h
@@ -278,13 +278,11 @@ struct GLSurfaceHandle {
GLSurfaceHandle()
: handle(kNullPluginWindow),
transport_type(EMPTY),
- parent_gpu_process_id(0),
parent_client_id(0) {
}
GLSurfaceHandle(PluginWindowHandle handle_, SurfaceType transport_)
: handle(handle_),
transport_type(transport_),
- parent_gpu_process_id(0),
parent_client_id(0) {
DCHECK(!is_null() || handle == kNullPluginWindow);
DCHECK(transport_type != TEXTURE_TRANSPORT ||
@@ -297,7 +295,6 @@ struct GLSurfaceHandle {
}
PluginWindowHandle handle;
SurfaceType transport_type;
- int parent_gpu_process_id;
uint32 parent_client_id;
};
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698