| 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 20 matching lines...) Expand all Loading... |
| 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/public/test/render_view_test.h" | 39 #include "content/public/test/render_view_test.h" |
| 40 #include "content/public/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/public/test/test_renderer_host.h" |
| 42 #include "content/test/test_renderer_host.h" | 42 #include "content/public/test/test_url_fetcher_factory.h" |
| 43 #include "content/test/test_url_fetcher_factory.h" | |
| 44 #include "grit/generated_resources.h" | 43 #include "grit/generated_resources.h" |
| 45 #include "ipc/ipc_test_sink.h" | 44 #include "ipc/ipc_test_sink.h" |
| 46 #include "testing/gmock/include/gmock/gmock.h" | 45 #include "testing/gmock/include/gmock/gmock.h" |
| 47 #include "third_party/WebKit/Source/WebKit/chromium/public/WebContextMenuData.h" | 46 #include "third_party/WebKit/Source/WebKit/chromium/public/WebContextMenuData.h" |
| 48 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" | 47 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" |
| 49 #include "third_party/cld/languages/public/languages.h" | 48 #include "third_party/cld/languages/public/languages.h" |
| 50 | 49 |
| 51 using content::BrowserThread; | 50 using content::BrowserThread; |
| 52 using content::NavigationController; | 51 using content::NavigationController; |
| 53 using content::RenderViewHostTester; | 52 using content::RenderViewHostTester; |
| (...skipping 1406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1460 NULL); | 1459 NULL); |
| 1461 // Now simulate the URL fetch. | 1460 // Now simulate the URL fetch. |
| 1462 SimulateTranslateScriptURLFetch(true); | 1461 SimulateTranslateScriptURLFetch(true); |
| 1463 // Now the message should have been sent. | 1462 // Now the message should have been sent. |
| 1464 int page_id = 0; | 1463 int page_id = 0; |
| 1465 std::string original_lang, target_lang; | 1464 std::string original_lang, target_lang; |
| 1466 EXPECT_TRUE(GetTranslateMessage(&page_id, &original_lang, &target_lang)); | 1465 EXPECT_TRUE(GetTranslateMessage(&page_id, &original_lang, &target_lang)); |
| 1467 EXPECT_EQ("es", original_lang); | 1466 EXPECT_EQ("es", original_lang); |
| 1468 EXPECT_EQ("en", target_lang); | 1467 EXPECT_EQ("en", target_lang); |
| 1469 } | 1468 } |
| OLD | NEW |