| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 <windows.h> | 5 #include <windows.h> |
| 6 #include <atlsecurity.h> | 6 #include <atlsecurity.h> |
| 7 #include <shellapi.h> | 7 #include <shellapi.h> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/file_util.h" | 12 #include "base/file_util.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_handle.h" | 14 #include "base/memory/scoped_handle.h" |
| 15 #include "base/message_loop.h" | 15 #include "base/message_loop.h" |
| 16 #include "base/path_service.h" | 16 #include "base/path_service.h" |
| 17 #include "base/process_util.h" | 17 #include "base/process_util.h" |
| 18 #include "base/task.h" | |
| 19 #include "base/utf_string_conversions.h" | 18 #include "base/utf_string_conversions.h" |
| 20 #include "net/base/net_util.h" | 19 #include "net/base/net_util.h" |
| 21 | 20 |
| 22 #include "chrome/browser/automation/url_request_automation_job.h" | 21 #include "chrome/browser/automation/url_request_automation_job.h" |
| 23 #include "chrome/common/chrome_version_info.h" | 22 #include "chrome/common/chrome_version_info.h" |
| 24 #include "chrome_frame/chrome_frame_automation.h" | 23 #include "chrome_frame/chrome_frame_automation.h" |
| 25 #include "chrome_frame/chrome_frame_delegate.h" | 24 #include "chrome_frame/chrome_frame_delegate.h" |
| 26 #include "chrome_frame/html_utils.h" | 25 #include "chrome_frame/html_utils.h" |
| 27 #include "testing/gtest/include/gtest/gtest.h" | 26 #include "testing/gtest/include/gtest/gtest.h" |
| 28 #include "webkit/glue/user_agent.h" | 27 #include "webkit/glue/user_agent.h" |
| (...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 "Content-Length: 42\r\n" | 478 "Content-Length: 42\r\n" |
| 480 "X-Frame-Options: SAMEORIGIN\r\n")); | 479 "X-Frame-Options: SAMEORIGIN\r\n")); |
| 481 EXPECT_TRUE(http_utils::HasFrameBustingHeader( | 480 EXPECT_TRUE(http_utils::HasFrameBustingHeader( |
| 482 "X-Frame-Options: deny\r\n" | 481 "X-Frame-Options: deny\r\n" |
| 483 "X-Frame-Options: ALLOWall\r\n" | 482 "X-Frame-Options: ALLOWall\r\n" |
| 484 "Content-Length: 42\r\n")); | 483 "Content-Length: 42\r\n")); |
| 485 EXPECT_TRUE(http_utils::HasFrameBustingHeader( | 484 EXPECT_TRUE(http_utils::HasFrameBustingHeader( |
| 486 "X-Frame-Options: SAMEORIGIN\r\n" | 485 "X-Frame-Options: SAMEORIGIN\r\n" |
| 487 "X-Frame-Options: ALLOWall\r\n")); | 486 "X-Frame-Options: ALLOWall\r\n")); |
| 488 } | 487 } |
| OLD | NEW |