| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. |
| 3 * Copyright (C) 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 class Document; | 45 class Document; |
| 46 class DOMWindowExtension; | 46 class DOMWindowExtension; |
| 47 class DOMWrapperWorld; | 47 class DOMWrapperWorld; |
| 48 class Element; | 48 class Element; |
| 49 class FetchRequest; | 49 class FetchRequest; |
| 50 class FrameLoader; | 50 class FrameLoader; |
| 51 class FrameNetworkingContext; | 51 class FrameNetworkingContext; |
| 52 class IntSize; | 52 class IntSize; |
| 53 class KURL; | 53 class KURL; |
| 54 class LocalFrame; | 54 class LocalFrame; |
| 55 class MessageEvent; | |
| 56 class Page; | 55 class Page; |
| 57 class ResourceError; | 56 class ResourceError; |
| 58 class ResourceHandle; | 57 class ResourceHandle; |
| 59 class ResourceRequest; | 58 class ResourceRequest; |
| 60 class ResourceResponse; | 59 class ResourceResponse; |
| 61 class SharedBuffer; | 60 class SharedBuffer; |
| 62 class Widget; | 61 class Widget; |
| 63 | 62 |
| 64 class FrameLoaderClient : public FrameClient { | 63 class FrameLoaderClient : public FrameClient { |
| 65 public: | 64 public: |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 virtual void dispatchDidChangeResourcePriority(unsigned long identifier,
ResourceLoadPriority, int intraPriorityValue) { } | 109 virtual void dispatchDidChangeResourcePriority(unsigned long identifier,
ResourceLoadPriority, int intraPriorityValue) { } |
| 111 | 110 |
| 112 virtual void dispatchDidChangeManifest() { } | 111 virtual void dispatchDidChangeManifest() { } |
| 113 | 112 |
| 114 virtual bool isFrameLoaderClientImpl() const { return false; } | 113 virtual bool isFrameLoaderClientImpl() const { return false; } |
| 115 }; | 114 }; |
| 116 | 115 |
| 117 } // namespace blink | 116 } // namespace blink |
| 118 | 117 |
| 119 #endif // FrameLoaderClient_h | 118 #endif // FrameLoaderClient_h |
| OLD | NEW |