| OLD | NEW |
| 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 "base/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/prefs/pref_service.h" | 6 #include "base/prefs/pref_service.h" |
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "chrome/app/chrome_command_ids.h" | 8 #include "chrome/app/chrome_command_ids.h" |
| 9 #include "chrome/browser/content_settings/host_content_settings_map.h" | 9 #include "chrome/browser/content_settings/host_content_settings_map.h" |
| 10 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 | 103 |
| 104 GURL url = ui_test_utils::GetTestUrl( | 104 GURL url = ui_test_utils::GetTestUrl( |
| 105 base::FilePath().AppendASCII("printing"), | 105 base::FilePath().AppendASCII("printing"), |
| 106 base::FilePath().AppendASCII("npapi_plugin.html")); | 106 base::FilePath().AppendASCII("npapi_plugin.html")); |
| 107 ui_test_utils::NavigateToURL(browser(), url); | 107 ui_test_utils::NavigateToURL(browser(), url); |
| 108 | 108 |
| 109 EXPECT_EQ(expected_title, title_watcher.WaitAndGetTitle()); | 109 EXPECT_EQ(expected_title, title_watcher.WaitAndGetTitle()); |
| 110 | 110 |
| 111 // Now get the region of the plugin before and after the print preview is | 111 // Now get the region of the plugin before and after the print preview is |
| 112 // shown. They should be different. | 112 // shown. They should be different. |
| 113 HWND hwnd = | 113 HWND hwnd = tab->GetView()->GetNativeView()->GetDispatcher()->host()-> |
| 114 tab->GetView()->GetNativeView()->GetDispatcher()->GetAcceleratedWidget(); | 114 GetAcceleratedWidget(); |
| 115 HWND child = NULL; | 115 HWND child = NULL; |
| 116 EnumChildWindows(hwnd, EnumerateChildren,reinterpret_cast<LPARAM>(&child)); | 116 EnumChildWindows(hwnd, EnumerateChildren,reinterpret_cast<LPARAM>(&child)); |
| 117 | 117 |
| 118 RECT region_before, region_after; | 118 RECT region_before, region_after; |
| 119 int result = GetWindowRgnBox(child, ®ion_before); | 119 int result = GetWindowRgnBox(child, ®ion_before); |
| 120 ASSERT_EQ(result, SIMPLEREGION); | 120 ASSERT_EQ(result, SIMPLEREGION); |
| 121 | 121 |
| 122 // Now print preview. | 122 // Now print preview. |
| 123 Print(); | 123 Print(); |
| 124 | 124 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 137 bool rects_equal = | 137 bool rects_equal = |
| 138 region_before.left == region_after.left && | 138 region_before.left == region_after.left && |
| 139 region_before.top == region_after.top && | 139 region_before.top == region_after.top && |
| 140 region_before.right == region_after.right && | 140 region_before.right == region_after.right && |
| 141 region_before.bottom == region_after.bottom; | 141 region_before.bottom == region_after.bottom; |
| 142 ASSERT_FALSE(rects_equal); | 142 ASSERT_FALSE(rects_equal); |
| 143 } | 143 } |
| 144 #endif | 144 #endif |
| 145 | 145 |
| 146 } // namespace | 146 } // namespace |
| OLD | NEW |