| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 | 103 |
| 104 | 104 |
| 105 // General notifications ----------------------------------------------- | 105 // General notifications ----------------------------------------------- |
| 106 | 106 |
| 107 // Indicates that another page has accessed the DOM of the initial empty | 107 // Indicates that another page has accessed the DOM of the initial empty |
| 108 // document of a main frame. After this, it is no longer safe to show a | 108 // document of a main frame. After this, it is no longer safe to show a |
| 109 // pending navigation's URL, because a URL spoof is possible. | 109 // pending navigation's URL, because a URL spoof is possible. |
| 110 virtual void didAccessInitialDocument(WebFrame*) { } | 110 virtual void didAccessInitialDocument(WebFrame*) { } |
| 111 | 111 |
| 112 // A child frame was created in this frame. This is called when the frame | 112 // A child frame was created in this frame. This is called when the frame |
| 113 // is created and initialized. | 113 // is created and initialized. Takes the name of the new frame, the parent |
| 114 // frame and returns a new WebFrame. The WebFrame is considered in-use |
| 115 // until frameDetached() is called on it. |
| 116 virtual WebFrame* createChildFrame(WebFrame* parent, const WebString& frameN
ame) { return 0; } |
| 117 // FIXME: Remove when all embedders use createChildFrame(). |
| 114 virtual void didCreateFrame(WebFrame* parent, WebFrame* child) { } | 118 virtual void didCreateFrame(WebFrame* parent, WebFrame* child) { } |
| 115 | 119 |
| 116 // This frame set its opener to null, disowning it. | 120 // This frame set its opener to null, disowning it. |
| 117 // See http://html.spec.whatwg.org/#dom-opener. | 121 // See http://html.spec.whatwg.org/#dom-opener. |
| 118 virtual void didDisownOpener(WebFrame*) { } | 122 virtual void didDisownOpener(WebFrame*) { } |
| 119 | 123 |
| 120 // This frame has been detached from the view, but has not been closed yet. | 124 // This frame has been detached from the view, but has not been closed yet. |
| 121 virtual void frameDetached(WebFrame*) { } | 125 virtual void frameDetached(WebFrame*) { } |
| 122 | 126 |
| 123 // This frame is about to be closed. This is called after frameDetached, | 127 // This frame is about to be closed. This is called after frameDetached, |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 // Extensions3D.h in WebCore/platform/graphics). | 368 // Extensions3D.h in WebCore/platform/graphics). |
| 365 virtual void didLoseWebGLContext(WebFrame*, int) { } | 369 virtual void didLoseWebGLContext(WebFrame*, int) { } |
| 366 | 370 |
| 367 protected: | 371 protected: |
| 368 ~WebFrameClient() { } | 372 ~WebFrameClient() { } |
| 369 }; | 373 }; |
| 370 | 374 |
| 371 } // namespace WebKit | 375 } // namespace WebKit |
| 372 | 376 |
| 373 #endif | 377 #endif |
| OLD | NEW |