OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 28 matching lines...) Expand all Loading... |
39 #include "WebDOMMessageEvent.h" | 39 #include "WebDOMMessageEvent.h" |
40 #include "WebDataSource.h" | 40 #include "WebDataSource.h" |
41 #include "WebIconURL.h" | 41 #include "WebIconURL.h" |
42 #include "WebNavigationPolicy.h" | 42 #include "WebNavigationPolicy.h" |
43 #include "WebNavigationType.h" | 43 #include "WebNavigationType.h" |
44 #include "WebSecurityOrigin.h" | 44 #include "WebSecurityOrigin.h" |
45 #include "WebStorageQuotaType.h" | 45 #include "WebStorageQuotaType.h" |
46 #include "WebTextDirection.h" | 46 #include "WebTextDirection.h" |
47 #include <v8.h> | 47 #include <v8.h> |
48 | 48 |
49 namespace WebKit { | 49 namespace blink { |
50 | 50 |
51 class WebApplicationCacheHost; | 51 class WebApplicationCacheHost; |
52 class WebApplicationCacheHostClient; | 52 class WebApplicationCacheHostClient; |
53 class WebCachedURLRequest; | 53 class WebCachedURLRequest; |
54 class WebCookieJar; | 54 class WebCookieJar; |
55 class WebDataSource; | 55 class WebDataSource; |
56 class WebDOMEvent; | 56 class WebDOMEvent; |
57 class WebFormElement; | 57 class WebFormElement; |
58 class WebFrame; | 58 class WebFrame; |
59 class WebMediaPlayer; | 59 class WebMediaPlayer; |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 virtual void willSendRequest( | 233 virtual void willSendRequest( |
234 WebFrame*, unsigned identifier, WebURLRequest&, | 234 WebFrame*, unsigned identifier, WebURLRequest&, |
235 const WebURLResponse& redirectResponse) { } | 235 const WebURLResponse& redirectResponse) { } |
236 | 236 |
237 // Response headers have been received for the resource request given | 237 // Response headers have been received for the resource request given |
238 // by identifier. | 238 // by identifier. |
239 virtual void didReceiveResponse( | 239 virtual void didReceiveResponse( |
240 WebFrame*, unsigned identifier, const WebURLResponse&) { } | 240 WebFrame*, unsigned identifier, const WebURLResponse&) { } |
241 | 241 |
242 virtual void didChangeResourcePriority( | 242 virtual void didChangeResourcePriority( |
243 WebFrame*, unsigned identifier, const WebKit::WebURLRequest::Priority&)
{ } | 243 WebFrame*, unsigned identifier, const blink::WebURLRequest::Priority&) {
} |
244 | 244 |
245 // The resource request given by identifier succeeded. | 245 // The resource request given by identifier succeeded. |
246 virtual void didFinishResourceLoad( | 246 virtual void didFinishResourceLoad( |
247 WebFrame*, unsigned identifier) { } | 247 WebFrame*, unsigned identifier) { } |
248 | 248 |
249 // The specified request was satified from WebCore's memory cache. | 249 // The specified request was satified from WebCore's memory cache. |
250 virtual void didLoadResourceFromMemoryCache( | 250 virtual void didLoadResourceFromMemoryCache( |
251 WebFrame*, const WebURLRequest&, const WebURLResponse&) { } | 251 WebFrame*, const WebURLRequest&, const WebURLResponse&) { } |
252 | 252 |
253 // This frame has displayed inactive content (such as an image) from an | 253 // This frame has displayed inactive content (such as an image) from an |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 | 370 |
371 // Notifies the client that a WebGL context was lost on this page with the | 371 // Notifies the client that a WebGL context was lost on this page with the |
372 // given reason (one of the GL_ARB_robustness status codes; see | 372 // given reason (one of the GL_ARB_robustness status codes; see |
373 // Extensions3D.h in WebCore/platform/graphics). | 373 // Extensions3D.h in WebCore/platform/graphics). |
374 virtual void didLoseWebGLContext(WebFrame*, int) { } | 374 virtual void didLoseWebGLContext(WebFrame*, int) { } |
375 | 375 |
376 protected: | 376 protected: |
377 ~WebFrameClient() { } | 377 ~WebFrameClient() { } |
378 }; | 378 }; |
379 | 379 |
380 } // namespace WebKit | 380 } // namespace blink |
381 | 381 |
382 #endif | 382 #endif |
OLD | NEW |