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

Side by Side Diff: webkit/plugins/npapi/plugin_stream.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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/plugins/npapi/plugin_list_win.cc ('k') | webkit/plugins/npapi/plugin_stream.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_PLUGINS_NPAPI_PLUGIN_STREAM_H_ 5 #ifndef WEBKIT_PLUGINS_NPAPI_PLUGIN_STREAM_H_
6 #define WEBKIT_PLUGINS_NPAPI_PLUGIN_STREAM_H_ 6 #define WEBKIT_PLUGINS_NPAPI_PLUGIN_STREAM_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 bool notify_needed_; 139 bool notify_needed_;
140 void* notify_data_; 140 void* notify_data_;
141 bool close_on_write_data_; 141 bool close_on_write_data_;
142 uint16 requested_plugin_mode_; 142 uint16 requested_plugin_mode_;
143 bool opened_; 143 bool opened_;
144 #if defined(OS_WIN) 144 #if defined(OS_WIN)
145 char temp_file_name_[MAX_PATH]; 145 char temp_file_name_[MAX_PATH];
146 HANDLE temp_file_handle_; 146 HANDLE temp_file_handle_;
147 #elif defined(OS_POSIX) 147 #elif defined(OS_POSIX)
148 FILE* temp_file_; 148 FILE* temp_file_;
149 FilePath temp_file_path_; 149 base::FilePath temp_file_path_;
150 #endif 150 #endif
151 std::vector<char> delivery_data_; 151 std::vector<char> delivery_data_;
152 int data_offset_; 152 int data_offset_;
153 bool seekable_stream_; 153 bool seekable_stream_;
154 std::string mime_type_; 154 std::string mime_type_;
155 DISALLOW_COPY_AND_ASSIGN(PluginStream); 155 DISALLOW_COPY_AND_ASSIGN(PluginStream);
156 }; 156 };
157 157
158 } // namespace npapi 158 } // namespace npapi
159 } // namespace webkit 159 } // namespace webkit
160 160
161 #endif // WEBKIT_PLUGINS_NPAPI_PLUGIN_STREAM_H_ 161 #endif // WEBKIT_PLUGINS_NPAPI_PLUGIN_STREAM_H_
OLDNEW
« no previous file with comments | « webkit/plugins/npapi/plugin_list_win.cc ('k') | webkit/plugins/npapi/plugin_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698