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

Side by Side Diff: webkit/common/base/data_element.h

Issue 16189015: [OBSOLETE] Slogging webkit_base out of existence. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 6 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
« no previous file with comments | « webkit/browser/fileapi/obfuscated_file_util.cc ('k') | webkit/common/base/data_element.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_BASE_DATA_ELEMENT_H_ 5 #ifndef WEBKIT_BASE_DATA_ELEMENT_H_
6 #define WEBKIT_BASE_DATA_ELEMENT_H_ 6 #define WEBKIT_BASE_DATA_ELEMENT_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/files/file_path.h" 12 #include "base/files/file_path.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/time.h" 14 #include "base/time.h"
15 #include "googleurl/src/gurl.h" 15 #include "googleurl/src/gurl.h"
16 #include "webkit/base/webkit_base_export.h" 16 #include "webkit/common/base/webkit_base_export.h"
17 17
18 namespace webkit_base { 18 namespace webkit_base {
19 19
20 // Represents a base Web data element. This could be either one of 20 // Represents a base Web data element. This could be either one of
21 // bytes, file or blob data. 21 // bytes, file or blob data.
22 class WEBKIT_BASE_EXPORT DataElement { 22 class WEBKIT_BASE_EXPORT DataElement {
23 public: 23 public:
24 enum Type { 24 enum Type {
25 TYPE_UNKNOWN = -1, 25 TYPE_UNKNOWN = -1,
26 TYPE_BYTES, 26 TYPE_BYTES,
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 } 137 }
138 138
139 inline bool operator!=(const DataElement& a, const DataElement& b) { 139 inline bool operator!=(const DataElement& a, const DataElement& b) {
140 return !(a == b); 140 return !(a == b);
141 } 141 }
142 #endif // defined(UNIT_TEST) 142 #endif // defined(UNIT_TEST)
143 143
144 } // namespace webkit_base 144 } // namespace webkit_base
145 145
146 #endif // WEBKIT_BASE_DATA_ELEMENT_H_ 146 #endif // WEBKIT_BASE_DATA_ELEMENT_H_
OLDNEW
« no previous file with comments | « webkit/browser/fileapi/obfuscated_file_util.cc ('k') | webkit/common/base/data_element.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698