Chromium Code Reviews| 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 <stddef.h> | 5 #include <stddef.h> |
| 6 #include <stdint.h> | 6 #include <stdint.h> |
| 7 | 7 |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/callback.h" | 9 #include "base/callback.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 44 #include "content/public/test/browser_test_utils.h" | 44 #include "content/public/test/browser_test_utils.h" |
| 45 #include "content/public/test/frame_load_waiter.h" | 45 #include "content/public/test/frame_load_waiter.h" |
| 46 #include "content/public/test/render_view_test.h" | 46 #include "content/public/test/render_view_test.h" |
| 47 #include "content/public/test/test_utils.h" | 47 #include "content/public/test/test_utils.h" |
| 48 #include "content/renderer/accessibility/renderer_accessibility.h" | 48 #include "content/renderer/accessibility/renderer_accessibility.h" |
| 49 #include "content/renderer/devtools/devtools_agent.h" | 49 #include "content/renderer/devtools/devtools_agent.h" |
| 50 #include "content/renderer/gpu/render_widget_compositor.h" | 50 #include "content/renderer/gpu/render_widget_compositor.h" |
| 51 #include "content/renderer/history_controller.h" | 51 #include "content/renderer/history_controller.h" |
| 52 #include "content/renderer/history_serialization.h" | 52 #include "content/renderer/history_serialization.h" |
| 53 #include "content/renderer/navigation_state_impl.h" | 53 #include "content/renderer/navigation_state_impl.h" |
| 54 #include "content/renderer/render_frame_proxy.h" | |
|
alexmos
2016/05/13 21:30:07
nit: not needed?
dcheng
2016/05/13 22:00:46
There's a call to RenderFrameProxy::FromRoutingID
| |
| 54 #include "content/renderer/render_process.h" | 55 #include "content/renderer/render_process.h" |
| 55 #include "content/renderer/render_view_impl.h" | 56 #include "content/renderer/render_view_impl.h" |
| 56 #include "content/shell/browser/shell.h" | 57 #include "content/shell/browser/shell.h" |
| 57 #include "content/shell/browser/shell_browser_context.h" | 58 #include "content/shell/browser/shell_browser_context.h" |
| 58 #include "content/test/mock_keyboard.h" | 59 #include "content/test/mock_keyboard.h" |
| 59 #include "content/test/test_render_frame.h" | 60 #include "content/test/test_render_frame.h" |
| 60 #include "net/base/net_errors.h" | 61 #include "net/base/net_errors.h" |
| 61 #include "net/cert/cert_status_flags.h" | 62 #include "net/cert/cert_status_flags.h" |
| 62 #include "testing/gtest/include/gtest/gtest.h" | 63 #include "testing/gtest/include/gtest/gtest.h" |
| 63 #include "third_party/WebKit/public/platform/WebData.h" | 64 #include "third_party/WebKit/public/platform/WebData.h" |
| (...skipping 2391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2455 "," | 2456 "," |
| 2456 "\"functionDeclaration\":\"function foo(){ " | 2457 "\"functionDeclaration\":\"function foo(){ " |
| 2457 "Promise.resolve().then(() => " | 2458 "Promise.resolve().then(() => " |
| 2458 "console.log(239))}\"" | 2459 "console.log(239))}\"" |
| 2459 "}" | 2460 "}" |
| 2460 "}"); | 2461 "}"); |
| 2461 EXPECT_EQ(1, CountNotifications("Console.messageAdded")); | 2462 EXPECT_EQ(1, CountNotifications("Console.messageAdded")); |
| 2462 } | 2463 } |
| 2463 | 2464 |
| 2464 } // namespace content | 2465 } // namespace content |
| OLD | NEW |