| 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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 virtual void willSendRequest( | 384 virtual void willSendRequest( |
| 385 WebLocalFrame*, unsigned identifier, WebURLRequest&, | 385 WebLocalFrame*, unsigned identifier, WebURLRequest&, |
| 386 const WebURLResponse& redirectResponse) { } | 386 const WebURLResponse& redirectResponse) { } |
| 387 | 387 |
| 388 // Response headers have been received for the resource request given | 388 // Response headers have been received for the resource request given |
| 389 // by identifier. | 389 // by identifier. |
| 390 virtual void didReceiveResponse( | 390 virtual void didReceiveResponse( |
| 391 WebLocalFrame*, unsigned identifier, const WebURLResponse&) { } | 391 WebLocalFrame*, unsigned identifier, const WebURLResponse&) { } |
| 392 | 392 |
| 393 virtual void didChangeResourcePriority( | 393 virtual void didChangeResourcePriority( |
| 394 WebLocalFrame* webFrame, unsigned identifier, const blink::WebURLRequest
::Priority& priority, int) { } | 394 WebLocalFrame* webFrame, unsigned identifier, const WebURLRequest::Prior
ity& priority, int) { } |
| 395 | 395 |
| 396 // The resource request given by identifier succeeded. | 396 // The resource request given by identifier succeeded. |
| 397 virtual void didFinishResourceLoad( | 397 virtual void didFinishResourceLoad( |
| 398 WebLocalFrame*, unsigned identifier) { } | 398 WebLocalFrame*, unsigned identifier) { } |
| 399 | 399 |
| 400 // The specified request was satified from WebCore's memory cache. | 400 // The specified request was satified from WebCore's memory cache. |
| 401 virtual void didLoadResourceFromMemoryCache( | 401 virtual void didLoadResourceFromMemoryCache( |
| 402 WebLocalFrame*, const WebURLRequest&, const WebURLResponse&) { } | 402 WebLocalFrame*, const WebURLRequest&, const WebURLResponse&) { } |
| 403 | 403 |
| 404 // This frame has displayed inactive content (such as an image) from an | 404 // This frame has displayed inactive content (such as an image) from an |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 // Access the embedder API for (client-based) screen orientation client . | 554 // Access the embedder API for (client-based) screen orientation client . |
| 555 virtual WebScreenOrientationClient* webScreenOrientationClient() { return 0;
} | 555 virtual WebScreenOrientationClient* webScreenOrientationClient() { return 0;
} |
| 556 | 556 |
| 557 protected: | 557 protected: |
| 558 virtual ~WebFrameClient() { } | 558 virtual ~WebFrameClient() { } |
| 559 }; | 559 }; |
| 560 | 560 |
| 561 } // namespace blink | 561 } // namespace blink |
| 562 | 562 |
| 563 #endif | 563 #endif |
| OLD | NEW |