| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google, Inc. All Rights Reserved. | 2 * Copyright (C) 2010 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef HTMLScriptRunnerHost_h | 26 #ifndef HTMLScriptRunnerHost_h |
| 27 #define HTMLScriptRunnerHost_h | 27 #define HTMLScriptRunnerHost_h |
| 28 | 28 |
| 29 #include "wtf/Forward.h" | 29 #include "wtf/Forward.h" |
| 30 | 30 |
| 31 namespace WebCore { | 31 namespace WebCore { |
| 32 | 32 |
| 33 class Resource; | 33 class Resource; |
| 34 class Element; | |
| 35 class HTMLInputStream; | 34 class HTMLInputStream; |
| 36 class ScriptSourceCode; | |
| 37 | 35 |
| 38 class HTMLScriptRunnerHost { | 36 class HTMLScriptRunnerHost { |
| 39 public: | 37 public: |
| 40 virtual ~HTMLScriptRunnerHost() { } | 38 virtual ~HTMLScriptRunnerHost() { } |
| 41 | 39 |
| 42 // Implementors should call cachedResource->addClient() here or soon after. | 40 virtual void notifyScriptLoaded(Resource*) = 0; |
| 43 virtual void watchForLoad(Resource*) = 0; | |
| 44 // Implementors must call cachedResource->removeClient() immediately. | |
| 45 virtual void stopWatchingForLoad(Resource*) = 0; | |
| 46 | |
| 47 virtual HTMLInputStream& inputStream() = 0; | 41 virtual HTMLInputStream& inputStream() = 0; |
| 48 | 42 |
| 49 virtual bool hasPreloadScanner() const = 0; | 43 virtual bool hasPreloadScanner() const = 0; |
| 50 virtual void appendCurrentInputStreamToPreloadScannerAndScan() = 0; | 44 virtual void appendCurrentInputStreamToPreloadScannerAndScan() = 0; |
| 51 | 45 |
| 52 }; | 46 }; |
| 53 | 47 |
| 54 } | 48 } |
| 55 | 49 |
| 56 #endif | 50 #endif |
| OLD | NEW |