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

Side by Side Diff: Source/core/html/LinkResource.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 10 matching lines...) Expand all
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef NavigatorDoNotTrack_h 31 #ifndef LinkResource_h
32 #define NavigatorDoNotTrack_h 32 #define LinkResource_h
33 33
34 #include "core/page/DOMWindowProperty.h" 34 #include "core/loader/cache/CachedResourceRequest.h"
35 #include "core/platform/Supplementable.h" 35 #include "core/platform/KURL.h"
36 #include "wtf/Forward.h"
37 #include "wtf/RefCounted.h"
36 #include "wtf/text/WTFString.h" 38 #include "wtf/text/WTFString.h"
37 39
38 namespace WebCore { 40 namespace WebCore {
39 41
40 class Frame; 42 class HTMLLinkElement;
41 class Navigator;
42 43
43 class NavigatorDoNotTrack : public Supplement<Navigator>, public DOMWindowProper ty { 44 class LinkResource : public RefCounted<LinkResource> {
45 WTF_MAKE_FAST_ALLOCATED;
44 public: 46 public:
45 virtual ~NavigatorDoNotTrack(); 47 enum Type {
46 static NavigatorDoNotTrack* from(Navigator*); 48 Style,
49 Import
50 };
47 51
48 static String doNotTrack(Navigator*); 52 explicit LinkResource(HTMLLinkElement*);
53 virtual ~LinkResource();
49 54
50 String doNotTrack(); 55 virtual Type type() const = 0;
56 virtual void process() = 0;
57 virtual void ownerRemoved() = 0;
58
59 protected:
60 HTMLLinkElement* m_owner;
61 };
62
63 class LinkRequestBuilder {
dglazkov 2013/05/23 18:32:00 I wonder if this could be just folded into LinkRes
Hajime Morrita 2013/05/24 02:28:27 That makes LinkResource bigger. I'd make this a sh
64 public:
65 explicit LinkRequestBuilder(HTMLLinkElement* owner);
66
67 bool isValid() const { return !m_url.isEmpty() && m_url.isValid(); }
68 const KURL& url() const { return m_url; }
69 const String& charset() const { return m_charset; }
70 CachedResourceRequest build(bool blocking) const;
51 71
52 private: 72 private:
53 explicit NavigatorDoNotTrack(Frame*); 73 HTMLLinkElement* m_owner;
54 static const char* supplementName(); 74 KURL m_url;
75 String m_charset;
55 }; 76 };
56 77
57 } // namespace WebCore 78 } // namespace WebCore
58 79
59 #endif // NavigatorDoNotTrack_h 80 #endif // LinkResource_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698