| 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/file_util.h" | 6 #include "base/file_util.h" |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
| 9 #include "base/strings/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
| 10 #include "base/test/trace_event_analyzer.h" | 10 #include "base/test/trace_event_analyzer.h" |
| 11 #include "base/version.h" | 11 #include "base/version.h" |
| 12 #include "chrome/browser/ui/browser.h" | 12 #include "chrome/browser/ui/browser.h" |
| 13 #include "chrome/browser/ui/browser_window.h" | 13 #include "chrome/browser/ui/browser_window.h" |
| 14 #include "chrome/common/chrome_paths.h" | 14 #include "chrome/common/chrome_paths.h" |
| 15 #include "chrome/common/chrome_switches.h" | 15 #include "chrome/common/chrome_switches.h" |
| 16 #include "chrome/test/base/in_process_browser_test.h" | 16 #include "chrome/test/base/in_process_browser_test.h" |
| 17 #include "chrome/test/base/tracing.h" | 17 #include "chrome/test/base/tracing.h" |
| 18 #include "chrome/test/base/ui_test_utils.h" | 18 #include "chrome/test/base/ui_test_utils.h" |
| 19 #include "content/public/browser/gpu_data_manager.h" | 19 #include "content/public/browser/gpu_data_manager.h" |
| 20 #include "content/public/common/content_switches.h" | 20 #include "content/public/common/content_switches.h" |
| 21 #include "content/public/test/browser_test_utils.h" | 21 #include "content/public/test/browser_test_utils.h" |
| 22 #include "gpu/config/gpu_feature_type.h" | 22 #include "gpu/config/gpu_feature_type.h" |
| 23 #include "gpu/config/gpu_info.h" | 23 #include "gpu/config/gpu_info.h" |
| 24 #include "gpu/config/gpu_test_config.h" | 24 #include "gpu/config/gpu_test_config.h" |
| 25 #include "net/base/filename_util.h" | 25 #include "net/base/net_util.h" |
| 26 #include "ui/gl/gl_implementation.h" | 26 #include "ui/gl/gl_implementation.h" |
| 27 | 27 |
| 28 #if defined(OS_MACOSX) | 28 #if defined(OS_MACOSX) |
| 29 #include "ui/gl/io_surface_support_mac.h" | 29 #include "ui/gl/io_surface_support_mac.h" |
| 30 #endif | 30 #endif |
| 31 | 31 |
| 32 #if defined(OS_WIN) | 32 #if defined(OS_WIN) |
| 33 #include "base/win/windows_version.h" | 33 #include "base/win/windows_version.h" |
| 34 #endif | 34 #endif |
| 35 | 35 |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 "%d (resize offset %d): IOSurface width %d -> %d; Creates %d " | 558 "%d (resize offset %d): IOSurface width %d -> %d; Creates %d " |
| 559 "Expected %d", offset_i, offsets[offset_i], | 559 "Expected %d", offset_i, offsets[offset_i], |
| 560 old_width, new_width, num_creates, expected_creates); | 560 old_width, new_width, num_creates, expected_creates); |
| 561 } | 561 } |
| 562 } | 562 } |
| 563 LOG(INFO) << "finished test"; | 563 LOG(INFO) << "finished test"; |
| 564 } | 564 } |
| 565 #endif | 565 #endif |
| 566 | 566 |
| 567 } // namespace | 567 } // namespace |
| OLD | NEW |