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

Unified Diff: webkit/plugins/npapi/quickdraw_drawing_manager_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
« no previous file with comments | « webkit/plugins/npapi/quickdraw_drawing_manager_mac.h ('k') | webkit/plugins/npapi/webplugin.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/npapi/quickdraw_drawing_manager_mac.cc
===================================================================
--- webkit/plugins/npapi/quickdraw_drawing_manager_mac.cc (revision 0)
+++ webkit/plugins/npapi/quickdraw_drawing_manager_mac.cc (working copy)
@@ -4,15 +4,18 @@
#ifndef NP_NO_QUICKDRAW
-#include "webkit/glue/plugins/quickdraw_drawing_manager_mac.h"
+#include "webkit/plugins/npapi/quickdraw_drawing_manager_mac.h"
-#include "webkit/glue/plugins/coregraphics_private_symbols_mac.h"
+#include "webkit/plugins/npapi/coregraphics_private_symbols_mac.h"
// Turn off GCC warnings about deprecated functions (since QuickDraw is a
// deprecated API). According to the GCC documentation, this can only be done
// per file, not pushed and popped like some options can be.
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
+namespace webkit {
+namespace npapi {
+
QuickDrawDrawingManager::QuickDrawDrawingManager()
: plugin_window_(NULL), target_context_(NULL), fast_path_enabled_(false),
current_port_(NULL), target_world_(NULL), plugin_world_(NULL) {}
@@ -151,4 +154,7 @@
}
}
+} // namespace npapi
+} // namespace webkit
+
#endif // !NP_NO_QUICKDRAW
« no previous file with comments | « webkit/plugins/npapi/quickdraw_drawing_manager_mac.h ('k') | webkit/plugins/npapi/webplugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698