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

Unified Diff: webkit/glue/plugins/carbon_plugin_window_tracker_mac.cc

Issue 6012002: Move the NPAPI files from webkit/glue/plugins to webkit/plugins/npapi and put... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years 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
Index: webkit/glue/plugins/carbon_plugin_window_tracker_mac.cc
===================================================================
--- webkit/glue/plugins/carbon_plugin_window_tracker_mac.cc (revision 69426)
+++ webkit/glue/plugins/carbon_plugin_window_tracker_mac.cc (working copy)
@@ -1,55 +0,0 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "base/logging.h"
-#include "webkit/glue/plugins/carbon_plugin_window_tracker_mac.h"
-
-CarbonPluginWindowTracker::CarbonPluginWindowTracker() {
-}
-
-CarbonPluginWindowTracker* CarbonPluginWindowTracker::SharedInstance() {
- static CarbonPluginWindowTracker* tracker = new CarbonPluginWindowTracker();
- return tracker;
-}
-
-WindowRef CarbonPluginWindowTracker::CreateDummyWindowForDelegate(
- OpaquePluginRef delegate) {
- // The real size will be set by the plugin instance, once that size is known.
- Rect window_bounds = { 0, 0, 100, 100 };
- WindowRef new_ref = NULL;
- if (CreateNewWindow(kDocumentWindowClass,
- kWindowNoTitleBarAttribute,
- &window_bounds,
- &new_ref) == noErr) {
- window_to_delegate_map_[new_ref] = delegate;
- delegate_to_window_map_[delegate] = new_ref;
- }
- return new_ref;
-}
-
-OpaquePluginRef CarbonPluginWindowTracker::GetDelegateForDummyWindow(
- WindowRef window) const {
- WindowToDelegateMap::const_iterator i = window_to_delegate_map_.find(window);
- if (i != window_to_delegate_map_.end())
- return i->second;
- return NULL;
-}
-
-WindowRef CarbonPluginWindowTracker::GetDummyWindowForDelegate(
- OpaquePluginRef delegate) const {
- DelegateToWindowMap::const_iterator i =
- delegate_to_window_map_.find(delegate);
- if (i != delegate_to_window_map_.end())
- return i->second;
- return NULL;
-}
-
-void CarbonPluginWindowTracker::DestroyDummyWindowForDelegate(
- OpaquePluginRef delegate, WindowRef window) {
- DCHECK(GetDelegateForDummyWindow(window) == delegate);
- window_to_delegate_map_.erase(window);
- delegate_to_window_map_.erase(delegate);
- if (window) // Check just in case the initial window creation failed.
- DisposeWindow(window);
-}
« no previous file with comments | « webkit/glue/plugins/carbon_plugin_window_tracker_mac.h ('k') | webkit/glue/plugins/coregraphics_private_symbols_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698