OLD | NEW |
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 EXTENSIONS_BROWSER_API_WEB_REQUEST_UPLOAD_DATA_PRESENTER_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_WEB_REQUEST_UPLOAD_DATA_PRESENTER_H_ |
6 #define EXTENSIONS_BROWSER_API_WEB_REQUEST_UPLOAD_DATA_PRESENTER_H_ | 6 #define EXTENSIONS_BROWSER_API_WEB_REQUEST_UPLOAD_DATA_PRESENTER_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 |
8 #include <string> | 10 #include <string> |
9 #include <vector> | 11 #include <vector> |
10 | 12 |
11 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
| 14 #include "base/macros.h" |
12 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
13 | 16 |
14 namespace base { | 17 namespace base { |
15 class DictionaryValue; | 18 class DictionaryValue; |
16 class ListValue; | 19 class ListValue; |
17 class Value; | 20 class Value; |
18 } | 21 } |
19 | 22 |
20 namespace extensions { | 23 namespace extensions { |
21 class FormDataParser; | 24 class FormDataParser; |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 scoped_ptr<FormDataParser> parser_; | 123 scoped_ptr<FormDataParser> parser_; |
121 bool success_; | 124 bool success_; |
122 scoped_ptr<base::DictionaryValue> dictionary_; | 125 scoped_ptr<base::DictionaryValue> dictionary_; |
123 | 126 |
124 DISALLOW_COPY_AND_ASSIGN(ParsedDataPresenter); | 127 DISALLOW_COPY_AND_ASSIGN(ParsedDataPresenter); |
125 }; | 128 }; |
126 | 129 |
127 } // namespace extensions | 130 } // namespace extensions |
128 | 131 |
129 #endif // EXTENSIONS_BROWSER_API_WEB_REQUEST_UPLOAD_DATA_PRESENTER_H_ | 132 #endif // EXTENSIONS_BROWSER_API_WEB_REQUEST_UPLOAD_DATA_PRESENTER_H_ |
OLD | NEW |