| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "testing/gtest/include/gtest/gtest.h" | 5 #include "testing/gtest/include/gtest/gtest.h" |
| 6 | 6 |
| 7 #include "app/combobox_model.h" | 7 #include "app/combobox_model.h" |
| 8 #include "app/resource_bundle.h" | |
| 9 #include "base/keyboard_codes.h" | 8 #include "base/keyboard_codes.h" |
| 10 #include "base/logging.h" | 9 #include "base/logging.h" |
| 11 #include "base/string_util.h" | 10 #include "base/string_util.h" |
| 12 #include "gfx/rect.h" | 11 #include "gfx/rect.h" |
| 13 #include "third_party/skia/include/core/SkColor.h" | 12 #include "third_party/skia/include/core/SkColor.h" |
| 14 #include "views/background.h" | 13 #include "views/background.h" |
| 15 #include "views/border.h" | 14 #include "views/border.h" |
| 16 #include "views/controls/button/checkbox.h" | 15 #include "views/controls/button/checkbox.h" |
| 17 #include "views/controls/button/native_button.h" | 16 #include "views/controls/button/native_button.h" |
| 18 #include "views/controls/button/radio_button.h" | 17 #include "views/controls/button/radio_button.h" |
| (...skipping 1698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1717 // Focus manager should be the last one to destruct. | 1716 // Focus manager should be the last one to destruct. |
| 1718 ASSERT_STREQ("FocusManagerDtorTracked", dtor_tracker_[2].c_str()); | 1717 ASSERT_STREQ("FocusManagerDtorTracked", dtor_tracker_[2].c_str()); |
| 1719 | 1718 |
| 1720 // Clear window_ so that we don't try to close it again. | 1719 // Clear window_ so that we don't try to close it again. |
| 1721 window_ = NULL; | 1720 window_ = NULL; |
| 1722 } | 1721 } |
| 1723 | 1722 |
| 1724 #endif // defined(OS_CHROMEOS) | 1723 #endif // defined(OS_CHROMEOS) |
| 1725 | 1724 |
| 1726 } // namespace views | 1725 } // namespace views |
| OLD | NEW |