OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/files/file_util.h" | 5 #include "base/files/file_util.h" |
6 #include "base/memory/ref_counted.h" | 6 #include "base/memory/ref_counted.h" |
7 #include "base/path_service.h" | |
8 #include "base/prefs/pref_service.h" | 7 #include "base/prefs/pref_service.h" |
9 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
10 #include "chrome/app/chrome_command_ids.h" | 9 #include "chrome/app/chrome_command_ids.h" |
11 #include "chrome/browser/plugins/plugin_prefs.h" | 10 #include "chrome/browser/plugins/plugin_prefs.h" |
12 #include "chrome/browser/profiles/profile.h" | 11 #include "chrome/browser/profiles/profile.h" |
13 #include "chrome/browser/ui/browser.h" | 12 #include "chrome/browser/ui/browser.h" |
14 #include "chrome/browser/ui/browser_commands.h" | 13 #include "chrome/browser/ui/browser_commands.h" |
15 #include "chrome/browser/ui/find_bar/find_bar.h" | 14 #include "chrome/browser/ui/find_bar/find_bar.h" |
16 #include "chrome/browser/ui/find_bar/find_bar_controller.h" | 15 #include "chrome/browser/ui/find_bar/find_bar_controller.h" |
17 #include "chrome/browser/ui/find_bar/find_bar_host_unittest_util.h" | 16 #include "chrome/browser/ui/find_bar/find_bar_host_unittest_util.h" |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 ASSERT_EQ(result, SIMPLEREGION); | 225 ASSERT_EQ(result, SIMPLEREGION); |
227 bool rects_equal = | 226 bool rects_equal = |
228 region_before.left == region_after.left && | 227 region_before.left == region_after.left && |
229 region_before.top == region_after.top && | 228 region_before.top == region_after.top && |
230 region_before.right == region_after.right && | 229 region_before.right == region_after.right && |
231 region_before.bottom == region_after.bottom; | 230 region_before.bottom == region_after.bottom; |
232 ASSERT_FALSE(rects_equal); | 231 ASSERT_FALSE(rects_equal); |
233 } | 232 } |
234 | 233 |
235 #endif | 234 #endif |
OLD | NEW |