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

Side by Side Diff: public/platform/WebURLRequest.h

Issue 78233002: Implement initial part of WebEmbeddedWorker (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed comments Created 7 years 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
« no previous file with comments | « Source/web/web.gypi ('k') | public/web/WebEmbeddedWorker.h » ('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) 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 TargetIsImage = 6, 78 TargetIsImage = 6,
79 TargetIsObject = 7, 79 TargetIsObject = 7,
80 TargetIsMedia = 8, 80 TargetIsMedia = 8,
81 TargetIsWorker = 9, 81 TargetIsWorker = 9,
82 TargetIsSharedWorker = 10, 82 TargetIsSharedWorker = 10,
83 TargetIsPrefetch = 11, 83 TargetIsPrefetch = 11,
84 TargetIsFavicon = 12, 84 TargetIsFavicon = 12,
85 TargetIsXHR = 13, 85 TargetIsXHR = 13,
86 TargetIsTextTrack = 14, 86 TargetIsTextTrack = 14,
87 TargetIsPing = 15, 87 TargetIsPing = 15,
88 TargetIsUnspecified = 16, 88 TargetIsServiceWorker = 16,
89 TargetIsUnspecified = 17,
89 }; 90 };
90 91
91 class ExtraData { 92 class ExtraData {
92 public: 93 public:
93 virtual ~ExtraData() { } 94 virtual ~ExtraData() { }
94 }; 95 };
95 96
96 ~WebURLRequest() { reset(); } 97 ~WebURLRequest() { reset(); }
97 98
98 WebURLRequest() : m_private(0) { } 99 WebURLRequest() : m_private(0) { }
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 protected: 205 protected:
205 BLINK_PLATFORM_EXPORT void assign(WebURLRequestPrivate*); 206 BLINK_PLATFORM_EXPORT void assign(WebURLRequestPrivate*);
206 207
207 private: 208 private:
208 WebURLRequestPrivate* m_private; 209 WebURLRequestPrivate* m_private;
209 }; 210 };
210 211
211 } // namespace blink 212 } // namespace blink
212 213
213 #endif 214 #endif
OLDNEW
« no previous file with comments | « Source/web/web.gypi ('k') | public/web/WebEmbeddedWorker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698