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