| 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 #include <string> | 5 #include <string> |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/string16.h" | 10 #include "base/string16.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 23 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
| 24 #include "chrome/common/chrome_notification_types.h" | 24 #include "chrome/common/chrome_notification_types.h" |
| 25 #include "chrome/common/render_messages.h" | 25 #include "chrome/common/render_messages.h" |
| 26 #include "chrome/renderer/translate_helper.h" | 26 #include "chrome/renderer/translate_helper.h" |
| 27 #include "chrome/test/base/in_process_browser_test.h" | 27 #include "chrome/test/base/in_process_browser_test.h" |
| 28 #include "chrome/test/base/ui_test_utils.h" | 28 #include "chrome/test/base/ui_test_utils.h" |
| 29 #include "content/public/browser/navigation_controller.h" | 29 #include "content/public/browser/navigation_controller.h" |
| 30 #include "content/public/browser/notification_service.h" | 30 #include "content/public/browser/notification_service.h" |
| 31 #include "content/public/browser/render_view_host.h" | 31 #include "content/public/browser/render_view_host.h" |
| 32 #include "content/public/browser/web_contents.h" | 32 #include "content/public/browser/web_contents.h" |
| 33 #include "content/test/test_renderer_host.h" | 33 #include "content/public/test/test_renderer_host.h" |
| 34 #include "content/test/test_url_fetcher_factory.h" | 34 #include "content/public/test/test_url_fetcher_factory.h" |
| 35 #include "testing/gtest/include/gtest/gtest.h" | 35 #include "testing/gtest/include/gtest/gtest.h" |
| 36 #include "ui/base/keycodes/keyboard_codes.h" | 36 #include "ui/base/keycodes/keyboard_codes.h" |
| 37 | 37 |
| 38 using content::RenderViewHost; | 38 using content::RenderViewHost; |
| 39 using content::RenderViewHostTester; | 39 using content::RenderViewHostTester; |
| 40 using content::WebContents; | 40 using content::WebContents; |
| 41 | 41 |
| 42 static const char* kDataURIPrefix = "data:text/html;charset=utf-8,"; | 42 static const char* kDataURIPrefix = "data:text/html;charset=utf-8,"; |
| 43 static const char* kTestFormString = | 43 static const char* kTestFormString = |
| 44 "<form action=\"http://www.example.com/\" method=\"POST\">" | 44 "<form action=\"http://www.example.com/\" method=\"POST\">" |
| (...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 // Once click the text field, it starts again. | 703 // Once click the text field, it starts again. |
| 704 ASSERT_TRUE(ui_test_utils::ExecuteJavaScript( | 704 ASSERT_TRUE(ui_test_utils::ExecuteJavaScript( |
| 705 render_view_host(), L"", | 705 render_view_host(), L"", |
| 706 L"cr.googleTranslate.onTranslateElementLoad();")); | 706 L"cr.googleTranslate.onTranslateElementLoad();")); |
| 707 | 707 |
| 708 // Simulate the render notifying the translation has been done. | 708 // Simulate the render notifying the translation has been done. |
| 709 translation_observer.Wait(); | 709 translation_observer.Wait(); |
| 710 | 710 |
| 711 TryBasicFormFill(); | 711 TryBasicFormFill(); |
| 712 } | 712 } |
| OLD | NEW |