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 | 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 19 matching lines...) Expand all Loading... |
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/test/render_view_test.h" |
40 #include "content/test/test_browser_thread.h" | 40 #include "content/public/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" |
50 | 50 |
(...skipping 1409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 } |
OLD | NEW |