| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "base/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/macros.h" |
| 6 #include "content/public/common/content_switches.h" | 7 #include "content/public/common/content_switches.h" |
| 7 #include "content/public/test/render_view_test.h" | 8 #include "content/public/test/render_view_test.h" |
| 8 #include "content/renderer/render_view_impl.h" | 9 #include "content/renderer/render_view_impl.h" |
| 9 #include "gin/handle.h" | 10 #include "gin/handle.h" |
| 10 #include "gin/per_isolate_data.h" | 11 #include "gin/per_isolate_data.h" |
| 11 #include "gin/wrappable.h" | 12 #include "gin/wrappable.h" |
| 12 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 13 #include "third_party/WebKit/public/web/WebFrame.h" | 14 #include "third_party/WebKit/public/web/WebFrame.h" |
| 14 #include "third_party/WebKit/public/web/WebKit.h" | 15 #include "third_party/WebKit/public/web/WebKit.h" |
| 15 #include "third_party/WebKit/public/web/WebView.h" | 16 #include "third_party/WebKit/public/web/WebView.h" |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 | 77 |
| 77 // Should not crash. | 78 // Should not crash. |
| 78 blink::mainThreadIsolate()->LowMemoryNotification(); | 79 blink::mainThreadIsolate()->LowMemoryNotification(); |
| 79 | 80 |
| 80 CHECK(!alive); | 81 CHECK(!alive); |
| 81 } | 82 } |
| 82 | 83 |
| 83 } // namespace | 84 } // namespace |
| 84 | 85 |
| 85 } // namespace content | 86 } // namespace content |
| OLD | NEW |