| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <string> | 5 #include <string> |
| 6 #include <vector> | 6 #include <vector> |
| 7 | 7 |
| 8 #include "base/process.h" | 8 #include "base/process.h" |
| 9 #include "base/scoped_ptr.h" |
| 9 #include "chrome/common/filter_policy.h" | 10 #include "chrome/common/filter_policy.h" |
| 10 #include "chrome/common/render_messages.h" | 11 #include "chrome/common/render_messages.h" |
| 11 #include "chrome/common/resource_dispatcher.h" | 12 #include "chrome/common/resource_dispatcher.h" |
| 12 | 13 |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 14 | 15 |
| 15 using webkit_glue::ResourceLoaderBridge; | 16 using webkit_glue::ResourceLoaderBridge; |
| 16 | 17 |
| 17 static const char test_page_url[] = "http://www.google.com/"; | 18 static const char test_page_url[] = "http://www.google.com/"; |
| 18 static const char test_page_headers[] = | 19 static const char test_page_headers[] = |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 // FIXME | 181 // FIXME |
| 181 } | 182 } |
| 182 | 183 |
| 183 TEST_F(ResourceDispatcherTest, Cookies) { | 184 TEST_F(ResourceDispatcherTest, Cookies) { |
| 184 // FIXME | 185 // FIXME |
| 185 } | 186 } |
| 186 | 187 |
| 187 TEST_F(ResourceDispatcherTest, SerializedPostData) { | 188 TEST_F(ResourceDispatcherTest, SerializedPostData) { |
| 188 // FIXME | 189 // FIXME |
| 189 } | 190 } |
| OLD | NEW |