| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 class WebPresentationClient; | 92 class WebPresentationClient; |
| 93 class WebPushClient; | 93 class WebPushClient; |
| 94 class WebRTCPeerConnectionHandler; | 94 class WebRTCPeerConnectionHandler; |
| 95 class WebRelatedAppsFetcher; | 95 class WebRelatedAppsFetcher; |
| 96 class WebScreenOrientationClient; | 96 class WebScreenOrientationClient; |
| 97 class WebString; | 97 class WebString; |
| 98 class WebURL; | 98 class WebURL; |
| 99 class WebURLResponse; | 99 class WebURLResponse; |
| 100 class WebUserMediaClient; | 100 class WebUserMediaClient; |
| 101 class WebWorkerContentSettingsClientProxy; | 101 class WebWorkerContentSettingsClientProxy; |
| 102 class WebWorkerFetchContextInfo; |
| 102 struct WebColorSuggestion; | 103 struct WebColorSuggestion; |
| 103 struct WebConsoleMessage; | 104 struct WebConsoleMessage; |
| 104 struct WebContextMenuData; | 105 struct WebContextMenuData; |
| 105 struct WebPluginParams; | 106 struct WebPluginParams; |
| 106 struct WebPopupMenuInfo; | 107 struct WebPopupMenuInfo; |
| 107 struct WebRect; | 108 struct WebRect; |
| 108 struct WebURLError; | 109 struct WebURLError; |
| 109 | 110 |
| 110 class BLINK_EXPORT WebFrameClient { | 111 class BLINK_EXPORT WebFrameClient { |
| 111 public: | 112 public: |
| (...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 751 // Returns the current visibility of the WebFrame. | 752 // Returns the current visibility of the WebFrame. |
| 752 virtual WebPageVisibilityState visibilityState() const { | 753 virtual WebPageVisibilityState visibilityState() const { |
| 753 return WebPageVisibilityStateVisible; | 754 return WebPageVisibilityStateVisible; |
| 754 } | 755 } |
| 755 | 756 |
| 756 // Overwrites the given URL to use an HTML5 embed if possible. | 757 // Overwrites the given URL to use an HTML5 embed if possible. |
| 757 // An empty URL is returned if the URL is not overriden. | 758 // An empty URL is returned if the URL is not overriden. |
| 758 virtual WebURL overrideFlashEmbedWithHTML(const WebURL& url) { | 759 virtual WebURL overrideFlashEmbedWithHTML(const WebURL& url) { |
| 759 return WebURL(); | 760 return WebURL(); |
| 760 } | 761 } |
| 762 |
| 763 virtual void propagateAuxiliaryFetchContext( |
| 764 WebWorkerFetchContextInfo*) const {} |
| 761 }; | 765 }; |
| 762 | 766 |
| 763 } // namespace blink | 767 } // namespace blink |
| 764 | 768 |
| 765 #endif | 769 #endif |
| OLD | NEW |