| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 #include "public/web/WebViewClient.h" | 44 #include "public/web/WebViewClient.h" |
| 45 #include "web/WebViewImpl.h" | 45 #include "web/WebViewImpl.h" |
| 46 #include <gmock/gmock.h> | 46 #include <gmock/gmock.h> |
| 47 #include <gtest/gtest.h> | 47 #include <gtest/gtest.h> |
| 48 #include <memory> | 48 #include <memory> |
| 49 #include <string> | 49 #include <string> |
| 50 | 50 |
| 51 namespace blink { | 51 namespace blink { |
| 52 | 52 |
| 53 class WebFrame; | 53 class WebFrame; |
| 54 class WebFrameWidget; | |
| 55 class WebLocalFrameImpl; | 54 class WebLocalFrameImpl; |
| 56 class WebRemoteFrameImpl; | 55 class WebRemoteFrameImpl; |
| 57 class WebSettings; | 56 class WebSettings; |
| 58 enum class WebCachePolicy; | 57 enum class WebCachePolicy; |
| 59 | 58 |
| 60 namespace FrameTestHelpers { | 59 namespace FrameTestHelpers { |
| 61 | 60 |
| 62 class TestWebFrameClient; | 61 class TestWebFrameClient; |
| 63 class TestWebWidgetClient; | 62 class TestWebWidgetClient; |
| 64 class TestWebViewClient; | 63 class TestWebViewClient; |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 WebDOMMessageEvent) override {} | 270 WebDOMMessageEvent) override {} |
| 272 | 271 |
| 273 private: | 272 private: |
| 274 Persistent<WebRemoteFrameImpl> const m_frame; | 273 Persistent<WebRemoteFrameImpl> const m_frame; |
| 275 }; | 274 }; |
| 276 | 275 |
| 277 } // namespace FrameTestHelpers | 276 } // namespace FrameTestHelpers |
| 278 } // namespace blink | 277 } // namespace blink |
| 279 | 278 |
| 280 #endif // FrameTestHelpers_h | 279 #endif // FrameTestHelpers_h |
| OLD | NEW |