| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "third_party/WebKit/WebKit/chromium/public/WebFrame.h" | 5 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h" |
| 6 #include "third_party/WebKit/WebKit/chromium/public/WebFrameClient.h" | 6 #include "third_party/WebKit/WebKit/chromium/public/WebFrameClient.h" |
| 7 #include "third_party/WebKit/WebKit/chromium/public/WebURLRequest.h" | 7 #include "third_party/WebKit/WebKit/chromium/public/WebURLRequest.h" |
| 8 #include "third_party/WebKit/WebKit/chromium/public/WebView.h" | 8 #include "third_party/WebKit/WebKit/chromium/public/WebView.h" |
| 9 | 9 |
| 10 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | 10 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 ASSERT_FALSE(info_->SetStringProperty( | 240 ASSERT_FALSE(info_->SetStringProperty( |
| 241 PP_URLREQUESTPROPERTY_HEADERS, "foo: bar\ncookie: foo")); | 241 PP_URLREQUESTPROPERTY_HEADERS, "foo: bar\ncookie: foo")); |
| 242 ASSERT_TRUE(IsNullOrEmpty(GetHeaderValue("cookie"))); | 242 ASSERT_TRUE(IsNullOrEmpty(GetHeaderValue("cookie"))); |
| 243 } | 243 } |
| 244 | 244 |
| 245 // TODO(bbudge) Unit tests for AppendDataToBody, AppendFileToBody. | 245 // TODO(bbudge) Unit tests for AppendDataToBody, AppendFileToBody. |
| 246 | 246 |
| 247 } // namespace ppapi | 247 } // namespace ppapi |
| 248 } // namespace webkit | 248 } // namespace webkit |
| 249 | 249 |
| OLD | NEW |