| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple 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 are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 #include "platform/UserGestureIndicator.h" | 47 #include "platform/UserGestureIndicator.h" |
| 48 #include "platform/exported/WrappedResourceRequest.h" | 48 #include "platform/exported/WrappedResourceRequest.h" |
| 49 #include "platform/exported/WrappedResourceResponse.h" | 49 #include "platform/exported/WrappedResourceResponse.h" |
| 50 #include "platform/network/HTTPParsers.h" | 50 #include "platform/network/HTTPParsers.h" |
| 51 #include "public/platform/Platform.h" | 51 #include "public/platform/Platform.h" |
| 52 #include "public/platform/WebMimeRegistry.h" | 52 #include "public/platform/WebMimeRegistry.h" |
| 53 #include "public/platform/WebURL.h" | 53 #include "public/platform/WebURL.h" |
| 54 #include "public/platform/WebURLError.h" | 54 #include "public/platform/WebURLError.h" |
| 55 #include "public/platform/WebVector.h" | 55 #include "public/platform/WebVector.h" |
| 56 #include "public/web/WebCachedURLRequest.h" | 56 #include "public/web/WebCachedURLRequest.h" |
| 57 #include "public/web/WebDOMEvent.h" | |
| 58 #include "public/web/WebDocument.h" | 57 #include "public/web/WebDocument.h" |
| 59 #include "public/web/WebFrameClient.h" | 58 #include "public/web/WebFrameClient.h" |
| 60 #include "public/web/WebNode.h" | 59 #include "public/web/WebNode.h" |
| 61 #include "public/web/WebViewClient.h" | 60 #include "public/web/WebViewClient.h" |
| 62 #include "web/WebLocalFrameImpl.h" | 61 #include "web/WebLocalFrameImpl.h" |
| 63 #include "web/WebViewImpl.h" | 62 #include "web/WebViewImpl.h" |
| 64 #include "wtf/StringExtras.h" | 63 #include "wtf/StringExtras.h" |
| 65 #include "wtf/text/CString.h" | 64 #include "wtf/text/CString.h" |
| 66 #include "wtf/text/WTFString.h" | 65 #include "wtf/text/WTFString.h" |
| 67 #include <v8.h> | 66 #include <v8.h> |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 m_webFrame->client()->didLoseWebGLContext(m_webFrame, arbRobustnessConte
xtLostReason); | 276 m_webFrame->client()->didLoseWebGLContext(m_webFrame, arbRobustnessConte
xtLostReason); |
| 278 } | 277 } |
| 279 | 278 |
| 280 void FrameLoaderClientImpl::dispatchDidChangeManifest() | 279 void FrameLoaderClientImpl::dispatchDidChangeManifest() |
| 281 { | 280 { |
| 282 if (m_webFrame->client()) | 281 if (m_webFrame->client()) |
| 283 m_webFrame->client()->didChangeManifest(m_webFrame); | 282 m_webFrame->client()->didChangeManifest(m_webFrame); |
| 284 } | 283 } |
| 285 | 284 |
| 286 } // namespace blink | 285 } // namespace blink |
| OLD | NEW |