| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_TEST_GUEST_VIEW_MANAGER_H_ | 5 #ifndef EXTENSIONS_BROWSER_GUEST_VIEW_TEST_GUEST_VIEW_MANAGER_H_ |
| 6 #define EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_TEST_GUEST_VIEW_MANAGER_H_ | 6 #define EXTENSIONS_BROWSER_GUEST_VIEW_TEST_GUEST_VIEW_MANAGER_H_ |
| 7 | 7 |
| 8 #include "content/public/test/test_utils.h" | 8 #include "content/public/test/test_utils.h" |
| 9 #include "extensions/browser/guest_view/guest_view_manager.h" | 9 #include "extensions/browser/guest_view/guest_view_manager.h" |
| 10 #include "extensions/browser/guest_view/guest_view_manager_factory.h" | 10 #include "extensions/browser/guest_view/guest_view_manager_factory.h" |
| 11 | 11 |
| 12 namespace extensions { | 12 namespace extensions { |
| 13 | 13 |
| 14 class TestGuestViewManager : public GuestViewManager { | 14 class TestGuestViewManager : public GuestViewManager { |
| 15 public: | 15 public: |
| 16 explicit TestGuestViewManager(content::BrowserContext* context); | 16 explicit TestGuestViewManager(content::BrowserContext* context); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 45 TestGuestViewManager* GetManager(content::BrowserContext* context); | 45 TestGuestViewManager* GetManager(content::BrowserContext* context); |
| 46 | 46 |
| 47 private: | 47 private: |
| 48 TestGuestViewManager* test_guest_view_manager_; | 48 TestGuestViewManager* test_guest_view_manager_; |
| 49 | 49 |
| 50 DISALLOW_COPY_AND_ASSIGN(TestGuestViewManagerFactory); | 50 DISALLOW_COPY_AND_ASSIGN(TestGuestViewManagerFactory); |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 } // namespace extensions | 53 } // namespace extensions |
| 54 | 54 |
| 55 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_TEST_GUEST_VIEW_MANAGER_H_ | 55 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_TEST_GUEST_VIEW_MANAGER_H_ |
| OLD | NEW |