OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/json/json_reader.h" | 6 #include "base/json/json_reader.h" |
7 #include "base/json/json_writer.h" | 7 #include "base/json/json_writer.h" |
8 #include "base/values.h" | 8 #include "base/values.h" |
9 #include "chrome/browser/automation/extension_automation_constants.h" | 9 #include "chrome/browser/automation/extension_automation_constants.h" |
10 #include "chrome/browser/extensions/extension_tabs_module_constants.h" | 10 #include "chrome/browser/extensions/extension_tabs_module_constants.h" |
| 11 #include "chrome/common/automation_messages.h" |
11 #include "chrome/common/chrome_switches.h" | 12 #include "chrome/common/chrome_switches.h" |
12 #include "chrome/common/extensions/extension.h" | 13 #include "chrome/common/extensions/extension.h" |
13 #include "chrome/test/automation/automation_messages.h" | |
14 #include "chrome/test/automation/automation_proxy_uitest.h" | 14 #include "chrome/test/automation/automation_proxy_uitest.h" |
15 #include "chrome/test/automation/tab_proxy.h" | 15 #include "chrome/test/automation/tab_proxy.h" |
16 #include "chrome/test/ui/ui_test.h" | 16 #include "chrome/test/ui/ui_test.h" |
17 #include "chrome/test/ui_test_utils.h" | 17 #include "chrome/test/ui_test_utils.h" |
18 #include "gfx/rect.h" | 18 #include "gfx/rect.h" |
19 #include "googleurl/src/gurl.h" | 19 #include "googleurl/src/gurl.h" |
20 #define GMOCK_MUTANT_INCLUDE_LATE_OBJECT_BINDING | 20 #define GMOCK_MUTANT_INCLUDE_LATE_OBJECT_BINDING |
21 #include "testing/gmock_mutant.h" | 21 #include "testing/gmock_mutant.h" |
22 | 22 |
23 namespace { | 23 namespace { |
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 ASSERT_EQ(arraysize(events_), event_count_.size()); | 480 ASSERT_EQ(arraysize(events_), event_count_.size()); |
481 for (std::map<std::string, int>::iterator i = event_count_.begin(); | 481 for (std::map<std::string, int>::iterator i = event_count_.begin(); |
482 i != event_count_.end(); ++i) { | 482 i != event_count_.end(); ++i) { |
483 const std::pair<std::string, int>& value = *i; | 483 const std::pair<std::string, int>& value = *i; |
484 EXPECT_EQ(1, value.second); | 484 EXPECT_EQ(1, value.second); |
485 } | 485 } |
486 } | 486 } |
487 #endif // defined(OS_WIN) | 487 #endif // defined(OS_WIN) |
488 | 488 |
489 } // namespace | 489 } // namespace |
OLD | NEW |