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

Side by Side Diff: Source/core/css/resolver/ViewportStyleResolver.h

Issue 19591002: Minor cleanups to includes and fwd decls in core/css/resolver (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased Created 7 years, 5 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 unified diff | Download patch
« no previous file with comments | « Source/core/css/resolver/TransformBuilder.h ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Intel Corporation. All rights reserved. 2 * Copyright (C) 2012 Intel Corporation. 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 * 7 *
8 * 1. Redistributions of source code must retain the above 8 * 1. Redistributions of source code must retain the above
9 * copyright notice, this list of conditions and the following 9 * copyright notice, this list of conditions and the following
10 * disclaimer. 10 * disclaimer.
(...skipping 18 matching lines...) Expand all
29 29
30 #ifndef ViewportStyleResolver_h 30 #ifndef ViewportStyleResolver_h
31 #define ViewportStyleResolver_h 31 #define ViewportStyleResolver_h
32 32
33 #include "CSSPropertyNames.h" 33 #include "CSSPropertyNames.h"
34 #include "wtf/RefCounted.h" 34 #include "wtf/RefCounted.h"
35 #include "wtf/RefPtr.h" 35 #include "wtf/RefPtr.h"
36 36
37 namespace WebCore { 37 namespace WebCore {
38 38
39 class CSSPrimitiveValue;
40 class Document; 39 class Document;
41 class MutableStylePropertySet; 40 class MutableStylePropertySet;
42 class StyleRuleViewport; 41 class StyleRuleViewport;
43 42
44 class ViewportStyleResolver : public RefCounted<ViewportStyleResolver> { 43 class ViewportStyleResolver : public RefCounted<ViewportStyleResolver> {
45 public: 44 public:
46 static PassRefPtr<ViewportStyleResolver> create(Document* document) 45 static PassRefPtr<ViewportStyleResolver> create(Document* document)
47 { 46 {
48 return adoptRef(new ViewportStyleResolver(document)); 47 return adoptRef(new ViewportStyleResolver(document));
49 } 48 }
(...skipping 10 matching lines...) Expand all
60 59
61 float getViewportArgumentValue(CSSPropertyID) const; 60 float getViewportArgumentValue(CSSPropertyID) const;
62 61
63 Document* m_document; 62 Document* m_document;
64 RefPtr<MutableStylePropertySet> m_propertySet; 63 RefPtr<MutableStylePropertySet> m_propertySet;
65 }; 64 };
66 65
67 } // namespace WebCore 66 } // namespace WebCore
68 67
69 #endif // ViewportStyleResolver_h 68 #endif // ViewportStyleResolver_h
OLDNEW
« no previous file with comments | « Source/core/css/resolver/TransformBuilder.h ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698