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

Unified Diff: plugin/mac/main_mac.mm

Issue 2129015: Refactored full-screen code under FullscreenWindowMac base class and... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: '' Created 10 years, 7 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/mac/fullscreen_window_mac.mm ('k') | plugin/mac/overlay_window_mac.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: plugin/mac/main_mac.mm
===================================================================
--- plugin/mac/main_mac.mm (revision 47689)
+++ plugin/mac/main_mac.mm (working copy)
@@ -56,6 +56,7 @@
#include "plugin/cross/whitelist.h"
#include "plugin/mac/plugin_mac.h"
#include "plugin/mac/graphics_utils_mac.h"
+#include "plugin/mac/fullscreen_window_mac.h"
#import "plugin/mac/o3d_layer.h"
@@ -69,6 +70,7 @@
using o3d::Bitmap;
using o3d::DisplayWindowMac;
using o3d::Event;
+using o3d::FullscreenWindowMac;
using o3d::Renderer;
namespace {
@@ -305,9 +307,8 @@
int x, y;
// now make x and y plugin relative coords
if (obj->GetFullscreenMacWindow()) {
- Rect wBounds;
- GetWindowBounds(obj->GetFullscreenMacWindow(), kWindowGlobalPortRgn,
- &wBounds);
+ Rect wBounds = o3d::CGRect2Rect(
+ obj->GetFullscreenMacWindow()->GetWindowBounds());
x = screen_x - wBounds.left;
y = screen_y - wBounds.top;
in_plugin = true;
@@ -470,7 +471,7 @@
// This API will also be required for a carbon-free 64 bit version for 10.6.
bool HandleCocoaEvent(NPP instance, NPCocoaEvent* the_event) {
PluginObject* obj = static_cast<PluginObject*>(instance->pdata);
- WindowRef fullscreen_window = obj->GetFullscreenMacWindow();
+ FullscreenWindowMac* fullscreen_window = obj->GetFullscreenMacWindow();
bool handled = false;
if (g_logger) g_logger->UpdateLogging();
@@ -552,7 +553,7 @@
// because another app has been called to the front.
// TODO: We'll have problems with this when dealing with e.g.
// Japanese text input IME windows.
- if (fullscreen_window && fullscreen_window != ActiveNonFloatingWindow()) {
+ if (fullscreen_window && !fullscreen_window->IsActive()) {
obj->CancelFullscreenDisplay();
}
@@ -846,7 +847,7 @@
bool HandleMacEvent(EventRecord* the_event, NPP instance) {
PluginObject* obj = static_cast<PluginObject*>(instance->pdata);
bool handled = false;
- WindowRef fullscreen_window = obj->GetFullscreenMacWindow();
+ FullscreenWindowMac* fullscreen_window = obj->GetFullscreenMacWindow();
if (g_logger) g_logger->UpdateLogging();
@@ -877,7 +878,7 @@
// of the fullscreen window and we need to exit fullscreen mode.
// This can happen because another browser window has come forward, or
// because another app has been called to the front.
- if (fullscreen_window && fullscreen_window != ActiveNonFloatingWindow()) {
+ if (fullscreen_window && !fullscreen_window->IsActive()) {
obj->CancelFullscreenDisplay();
}
« no previous file with comments | « plugin/mac/fullscreen_window_mac.mm ('k') | plugin/mac/overlay_window_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698