Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(626)

Unified Diff: Source/core/html/HTMLImportsHost.h

Issue 15856002: First step of HTMLImports (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/html/HTMLImportsHost.h
diff --git a/Source/core/animation/AnimatableValue.h b/Source/core/html/HTMLImportsHost.h
similarity index 87%
copy from Source/core/animation/AnimatableValue.h
copy to Source/core/html/HTMLImportsHost.h
index 238766112da5a305c156fe0376712f61a4565753..b514bda9d937ed4529cb89dca8887aa742759df7 100644
--- a/Source/core/animation/AnimatableValue.h
+++ b/Source/core/html/HTMLImportsHost.h
@@ -28,20 +28,21 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef AnimatableValue_h
-#define AnimatableValue_h
-
-#include "core/css/CSSValue.h"
-#include "wtf/PassRefPtr.h"
+#ifndef HTMLImportsHost_h
+#define HTMLImportsHost_h
namespace WebCore {
-// FIXME: This class is currently just a stub.
-class AnimatableValue {
+class HTMLImports;
+class SecurityContext;
+
+class HTMLImportsHost {
dglazkov 2013/05/23 18:32:00 ImportsMasterDocument maybe? :)
Hajime Morrita 2013/05/24 02:28:27 I'd keep Document concept away. But you're right.
public:
- PassRefPtr<CSSValue> toCSSValue() const;
+ virtual ~HTMLImportsHost() { }
+ virtual void didLoadAllImports() = 0;
+ virtual SecurityContext* importsContext() = 0;
};
} // namespace WebCore
-#endif // AnimatableValue_h
+#endif // HTMLImportsHost_h

Powered by Google App Engine
This is Rietveld 408576698