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

Side by Side Diff: chrome/browser/translate/translate_manager_browsertest.cc

Issue 10497013: Move render_view_test.h header from content\test to content\public\test. This way we can enforce th… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 6 months 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) 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 5
6 #include <algorithm> 6 #include <algorithm>
7 #include <set> 7 #include <set>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/json/json_writer.h" 10 #include "base/json/json_writer.h"
(...skipping 18 matching lines...) Expand all
29 #include "chrome/common/render_messages.h" 29 #include "chrome/common/render_messages.h"
30 #include "chrome/test/base/testing_browser_process.h" 30 #include "chrome/test/base/testing_browser_process.h"
31 #include "chrome/test/base/testing_profile.h" 31 #include "chrome/test/base/testing_profile.h"
32 #include "content/public/browser/navigation_details.h" 32 #include "content/public/browser/navigation_details.h"
33 #include "content/public/browser/navigation_entry.h" 33 #include "content/public/browser/navigation_entry.h"
34 #include "content/public/browser/notification_details.h" 34 #include "content/public/browser/notification_details.h"
35 #include "content/public/browser/notification_registrar.h" 35 #include "content/public/browser/notification_registrar.h"
36 #include "content/public/browser/web_contents.h" 36 #include "content/public/browser/web_contents.h"
37 #include "content/public/test/mock_notification_observer.h" 37 #include "content/public/test/mock_notification_observer.h"
38 #include "content/public/test/mock_render_process_host.h" 38 #include "content/public/test/mock_render_process_host.h"
39 #include "content/test/render_view_test.h" 39 #include "content/public/test/render_view_test.h"
40 #include "content/test/test_browser_thread.h" 40 #include "content/test/test_browser_thread.h"
41 #include "content/test/test_renderer_host.h" 41 #include "content/test/test_renderer_host.h"
42 #include "content/test/test_renderer_host.h" 42 #include "content/test/test_renderer_host.h"
43 #include "content/test/test_url_fetcher_factory.h" 43 #include "content/test/test_url_fetcher_factory.h"
44 #include "grit/generated_resources.h" 44 #include "grit/generated_resources.h"
45 #include "ipc/ipc_test_sink.h" 45 #include "ipc/ipc_test_sink.h"
46 #include "testing/gmock/include/gmock/gmock.h" 46 #include "testing/gmock/include/gmock/gmock.h"
47 #include "third_party/WebKit/Source/WebKit/chromium/public/WebContextMenuData.h" 47 #include "third_party/WebKit/Source/WebKit/chromium/public/WebContextMenuData.h"
48 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" 48 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h"
49 #include "third_party/cld/languages/public/languages.h" 49 #include "third_party/cld/languages/public/languages.h"
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 virtual void Observe(int type, 160 virtual void Observe(int type,
161 const content::NotificationSource& source, 161 const content::NotificationSource& source,
162 const content::NotificationDetails& details) { 162 const content::NotificationDetails& details) {
163 DCHECK_EQ(chrome::NOTIFICATION_TAB_CONTENTS_INFOBAR_REMOVED, type); 163 DCHECK_EQ(chrome::NOTIFICATION_TAB_CONTENTS_INFOBAR_REMOVED, type);
164 removed_infobars_.insert( 164 removed_infobars_.insert(
165 content::Details<InfoBarRemovedDetails>(details)->first); 165 content::Details<InfoBarRemovedDetails>(details)->first);
166 } 166 }
167 167
168 protected: 168 protected:
169 virtual void SetUp() { 169 virtual void SetUp() {
170 WebKit::initialize(&webkit_platform_support_); 170 WebKit::initialize(webkit_platform_support_.Get());
171 // Access the TranslateManager singleton so it is created before we call 171 // Access the TranslateManager singleton so it is created before we call
172 // TabContentsWrapperTestHarness::SetUp() to match what's done in Chrome, 172 // TabContentsWrapperTestHarness::SetUp() to match what's done in Chrome,
173 // where the TranslateManager is created before the WebContents. This 173 // where the TranslateManager is created before the WebContents. This
174 // matters as they both register for similar events and we want the 174 // matters as they both register for similar events and we want the
175 // notifications to happen in the same sequence (TranslateManager first, 175 // notifications to happen in the same sequence (TranslateManager first,
176 // WebContents second). Also clears the translate script so it is fetched 176 // WebContents second). Also clears the translate script so it is fetched
177 // everytime and sets the expiration delay to a large value by default (in 177 // everytime and sets the expiration delay to a large value by default (in
178 // case it was zeroed in a previous test). 178 // case it was zeroed in a previous test).
179 TranslateManager::GetInstance()->ClearTranslateScript(); 179 TranslateManager::GetInstance()->ClearTranslateScript();
180 TranslateManager::GetInstance()-> 180 TranslateManager::GetInstance()->
(...skipping 1279 matching lines...) Expand 10 before | Expand all | Expand 10 after
1460 NULL); 1460 NULL);
1461 // Now simulate the URL fetch. 1461 // Now simulate the URL fetch.
1462 SimulateTranslateScriptURLFetch(true); 1462 SimulateTranslateScriptURLFetch(true);
1463 // Now the message should have been sent. 1463 // Now the message should have been sent.
1464 int page_id = 0; 1464 int page_id = 0;
1465 std::string original_lang, target_lang; 1465 std::string original_lang, target_lang;
1466 EXPECT_TRUE(GetTranslateMessage(&page_id, &original_lang, &target_lang)); 1466 EXPECT_TRUE(GetTranslateMessage(&page_id, &original_lang, &target_lang));
1467 EXPECT_EQ("es", original_lang); 1467 EXPECT_EQ("es", original_lang);
1468 EXPECT_EQ("en", target_lang); 1468 EXPECT_EQ("en", target_lang);
1469 } 1469 }
OLDNEW
« no previous file with comments | « chrome/browser/sessions/tab_restore_service_browsertest.cc ('k') | chrome/browser/ui/views/ash/window_positioner_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698