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

Side by Side Diff: webkit/plugins/ppapi/url_response_info_util.cc

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/plugins/ppapi/url_request_info_util.cc ('k') | webkit/plugins/webkit_plugins.gypi » ('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 #include "webkit/plugins/ppapi/url_response_info_util.h" 5 #include "webkit/plugins/ppapi/url_response_info_util.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "third_party/WebKit/public/platform/WebHTTPHeaderVisitor.h" 8 #include "third_party/WebKit/public/platform/WebHTTPHeaderVisitor.h"
9 #include "third_party/WebKit/public/platform/WebString.h" 9 #include "third_party/WebKit/public/platform/WebString.h"
10 #include "third_party/WebKit/public/platform/WebURL.h" 10 #include "third_party/WebKit/public/platform/WebURL.h"
11 #include "third_party/WebKit/public/platform/WebURLResponse.h" 11 #include "third_party/WebKit/public/platform/WebURLResponse.h"
12 #include "webkit/base/file_path_string_conversions.h" 12 #include "webkit/common/base/file_path_string_conversions.h"
13 #include "webkit/plugins/ppapi/ppb_file_ref_impl.h" 13 #include "webkit/plugins/ppapi/ppb_file_ref_impl.h"
14 #include "webkit/glue/webkit_glue.h" 14 #include "webkit/glue/webkit_glue.h"
15 15
16 using WebKit::WebHTTPHeaderVisitor; 16 using WebKit::WebHTTPHeaderVisitor;
17 using WebKit::WebString; 17 using WebKit::WebString;
18 using WebKit::WebURLResponse; 18 using WebKit::WebURLResponse;
19 19
20 namespace webkit { 20 namespace webkit {
21 namespace ppapi { 21 namespace ppapi {
22 22
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 webkit_base::WebStringToFilePath(file_path), 69 webkit_base::WebStringToFilePath(file_path),
70 std::string())); 70 std::string()));
71 data.body_as_file_ref = file_ref->GetCreateInfo(); 71 data.body_as_file_ref = file_ref->GetCreateInfo();
72 file_ref->GetReference(); // The returned data has one ref for the plugin. 72 file_ref->GetReference(); // The returned data has one ref for the plugin.
73 } 73 }
74 return data; 74 return data;
75 } 75 }
76 76
77 } // namespace ppapi 77 } // namespace ppapi
78 } // namespace webkit 78 } // namespace webkit
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/url_request_info_util.cc ('k') | webkit/plugins/webkit_plugins.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698