| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 class WebApplicationCacheHost; | 39 class WebApplicationCacheHost; |
| 40 class WebApplicationCacheHostClient; | 40 class WebApplicationCacheHostClient; |
| 41 class WebDataSource; | 41 class WebDataSource; |
| 42 class WebNotificationPresenter; | 42 class WebNotificationPresenter; |
| 43 class WebSecurityOrigin; | 43 class WebSecurityOrigin; |
| 44 class WebServiceWorkerNetworkProvider; | 44 class WebServiceWorkerNetworkProvider; |
| 45 class WebString; | 45 class WebString; |
| 46 class WebWorker; | |
| 47 class WebWorkerContentSettingsClientProxy; | 46 class WebWorkerContentSettingsClientProxy; |
| 48 | 47 |
| 49 // Provides an interface back to the in-page script object for a worker. | 48 // Provides an interface back to the in-page script object for a worker. |
| 50 // All functions are expected to be called back on the thread that created | 49 // All functions are expected to be called back on the thread that created |
| 51 // the Worker object, unless noted. | 50 // the Worker object, unless noted. |
| 52 // An instance of this class must outlive or must have the identical lifetime | 51 // An instance of this class must outlive or must have the identical lifetime |
| 53 // as WebSharedWorker (i.e. must be kept alive until workerScriptLoadFailed() | 52 // as WebSharedWorker (i.e. must be kept alive until workerScriptLoadFailed() |
| 54 // or workerContextDestroyed() is called). | 53 // or workerContextDestroyed() is called). |
| 55 class WebSharedWorkerClient { | 54 class WebSharedWorkerClient { |
| 56 public: | 55 public: |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 const WebString& state) {} | 91 const WebString& state) {} |
| 93 virtual WebDevToolsAgentClient::WebKitClientMessageLoop* | 92 virtual WebDevToolsAgentClient::WebKitClientMessageLoop* |
| 94 createDevToolsMessageLoop() { | 93 createDevToolsMessageLoop() { |
| 95 return nullptr; | 94 return nullptr; |
| 96 } | 95 } |
| 97 }; | 96 }; |
| 98 | 97 |
| 99 } // namespace blink | 98 } // namespace blink |
| 100 | 99 |
| 101 #endif | 100 #endif |
| OLD | NEW |