| 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
|
|
|