| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) | 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) |
| 3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) | 3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) |
| 4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) | 4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) |
| 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
rights reserved. | 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
rights reserved. |
| 6 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ | 6 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ |
| 7 | 7 |
| 8 This library is free software; you can redistribute it and/or | 8 This library is free software; you can redistribute it and/or |
| 9 modify it under the terms of the GNU Library General Public | 9 modify it under the terms of the GNU Library General Public |
| 10 License as published by the Free Software Foundation; either | 10 License as published by the Free Software Foundation; either |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "sky/engine/core/fetch/FetchContext.h" | 34 #include "sky/engine/core/fetch/FetchContext.h" |
| 35 #include "sky/engine/core/fetch/FontResource.h" | 35 #include "sky/engine/core/fetch/FontResource.h" |
| 36 #include "sky/engine/core/fetch/ImageResource.h" | 36 #include "sky/engine/core/fetch/ImageResource.h" |
| 37 #include "sky/engine/core/fetch/MemoryCache.h" | 37 #include "sky/engine/core/fetch/MemoryCache.h" |
| 38 #include "sky/engine/core/fetch/RawResource.h" | 38 #include "sky/engine/core/fetch/RawResource.h" |
| 39 #include "sky/engine/core/fetch/ResourceLoader.h" | 39 #include "sky/engine/core/fetch/ResourceLoader.h" |
| 40 #include "sky/engine/core/fetch/ResourceLoaderSet.h" | 40 #include "sky/engine/core/fetch/ResourceLoaderSet.h" |
| 41 #include "sky/engine/core/frame/LocalDOMWindow.h" | 41 #include "sky/engine/core/frame/LocalDOMWindow.h" |
| 42 #include "sky/engine/core/frame/LocalFrame.h" | 42 #include "sky/engine/core/frame/LocalFrame.h" |
| 43 #include "sky/engine/core/frame/Settings.h" | 43 #include "sky/engine/core/frame/Settings.h" |
| 44 #include "sky/engine/core/frame/UseCounter.h" | |
| 45 #include "sky/engine/core/html/HTMLElement.h" | 44 #include "sky/engine/core/html/HTMLElement.h" |
| 46 #include "sky/engine/core/html/imports/HTMLImportsController.h" | 45 #include "sky/engine/core/html/imports/HTMLImportsController.h" |
| 47 #include "sky/engine/core/inspector/ConsoleMessage.h" | 46 #include "sky/engine/core/inspector/ConsoleMessage.h" |
| 48 #include "sky/engine/core/loader/FrameLoaderClient.h" | 47 #include "sky/engine/core/loader/FrameLoaderClient.h" |
| 49 #include "sky/engine/core/loader/UniqueIdentifier.h" | 48 #include "sky/engine/core/loader/UniqueIdentifier.h" |
| 50 #include "sky/engine/core/page/Page.h" | 49 #include "sky/engine/core/page/Page.h" |
| 51 #include "sky/engine/platform/Logging.h" | 50 #include "sky/engine/platform/Logging.h" |
| 52 #include "sky/engine/platform/SharedBuffer.h" | 51 #include "sky/engine/platform/SharedBuffer.h" |
| 53 #include "sky/engine/platform/TraceEvent.h" | 52 #include "sky/engine/platform/TraceEvent.h" |
| 54 #include "sky/engine/platform/weborigin/SecurityPolicy.h" | 53 #include "sky/engine/platform/weborigin/SecurityPolicy.h" |
| (...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 762 case Revalidate: | 761 case Revalidate: |
| 763 ++m_revalidateCount; | 762 ++m_revalidateCount; |
| 764 return; | 763 return; |
| 765 case Use: | 764 case Use: |
| 766 ++m_useCount; | 765 ++m_useCount; |
| 767 return; | 766 return; |
| 768 } | 767 } |
| 769 } | 768 } |
| 770 | 769 |
| 771 } | 770 } |
| OLD | NEW |