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

Unified Diff: plugin/linux/main_linux.cc

Issue 527024: Linux: implement setting cursor type (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 10 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 | « plugin/cross/o3d_glue.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: plugin/linux/main_linux.cc
===================================================================
--- plugin/linux/main_linux.cc (revision 35644)
+++ plugin/linux/main_linux.cc (working copy)
@@ -747,7 +747,6 @@
obj->event_handler_id_ = 0;
obj->window_ = 0;
obj->drawable_ = 0;
- obj->display_ = NULL;
obj->TearDown();
NPN_ReleaseObject(obj);
@@ -807,7 +806,7 @@
obj->CreateRenderer(default_display);
obj->client()->Init();
- obj->display_ = display;
+ obj->SetDisplay(display);
obj->window_ = xwindow;
obj->drawable_ = drawable;
}
@@ -863,16 +862,16 @@
if (fullscreen_pending_) {
// Our fullscreen window has been placed and sized. Switch to it.
fullscreen_pending_ = false;
- Window fullscreen_window =
- GDK_WINDOW_XID(gtk_fullscreen_container_->window);
+ fullscreen_window_ = GDK_WINDOW_XID(gtk_fullscreen_container_->window);
DisplayWindowLinux display;
display.set_display(display_);
- display.set_window(fullscreen_window);
+ display.set_window(fullscreen_window_);
prev_width_ = renderer()->width();
prev_height_ = renderer()->height();
if (!renderer()->GoFullscreen(display, fullscreen_region_mode_id_)) {
gtk_widget_destroy(gtk_fullscreen_container_);
gtk_fullscreen_container_ = NULL;
+ fullscreen_window_ = 0;
// The return value is for whether we handled the event, not whether it
// was successful, so return TRUE event for error.
return TRUE;
@@ -964,6 +963,7 @@
gtk_widget_destroy(gtk_fullscreen_container_);
gtk_widget_unref(gtk_fullscreen_container_);
gtk_fullscreen_container_ = NULL;
+ fullscreen_window_ = 0;
fullscreen_ = false;
}
} // namespace _o3d
« no previous file with comments | « plugin/cross/o3d_glue.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698