/src/3rdparty/webkit/Source/WebKit/qt/Api/qwebscriptworld.cpp

https://bitbucket.org/ultra_iter/qt-vtl · C++ · 62 lines · 29 code · 9 blank · 24 comment · 0 complexity · 9fb918b07535ecb61cdc8d1e4b9311e8 MD5 · raw file

  1. /*
  2. Copyright (C) 2010 Robert Hogan <robert@roberthogan.net>
  3. This library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Library General Public
  5. License as published by the Free Software Foundation; either
  6. version 2 of the License, or (at your option) any later version.
  7. This library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public License
  12. along with this library; see the file COPYING.LIB. If not, write to
  13. the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  14. Boston, MA 02110-1301, USA.
  15. */
  16. #include "config.h"
  17. #include "qwebscriptworld.h"
  18. #include "qwebscriptworld_p.h"
  19. #include "KURL.h"
  20. #include "ScriptController.h"
  21. #include <QStringList>
  22. using namespace WebCore;
  23. /*!
  24. Constructs a security origin from \a other.
  25. */
  26. QWebScriptWorld::QWebScriptWorld()
  27. {
  28. #if USE(JSC)
  29. d = new QWebScriptWorldPrivate(ScriptController::createWorld());
  30. #endif
  31. }
  32. QWebScriptWorld::QWebScriptWorld(const QWebScriptWorld& other)
  33. : d(other.d)
  34. {
  35. }
  36. QWebScriptWorld &QWebScriptWorld::operator=(const QWebScriptWorld& other)
  37. {
  38. d = other.d;
  39. return *this;
  40. }
  41. DOMWrapperWorld* QWebScriptWorld::world() const
  42. {
  43. return d ? d->world.get() : 0;
  44. }
  45. /*!
  46. Destroys the security origin.
  47. */
  48. QWebScriptWorld::~QWebScriptWorld()
  49. {
  50. }