Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(675)

Side by Side Diff: chrome/browser/extensions/extension_uitest.cc

Issue 4758001: Part 2 of reapplying r64637. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Window recompile after rebase? Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chrome/browser/automation/url_request_automation_job.cc ('k') | chrome/browser/external_tab_container_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698