| 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 #ifndef CONTENT_TEST_TEST_WEB_CONTENTS_H_ | 5 #ifndef CONTENT_TEST_TEST_WEB_CONTENTS_H_ |
| 6 #define CONTENT_TEST_TEST_WEB_CONTENTS_H_ | 6 #define CONTENT_TEST_TEST_WEB_CONTENTS_H_ |
| 7 | 7 |
| 8 #include "content/browser/web_contents/web_contents_impl.h" | 8 #include "content/browser/web_contents/web_contents_impl.h" |
| 9 #include "content/public/common/page_transition_types.h" | 9 #include "content/public/common/page_transition_types.h" |
| 10 #include "content/public/common/web_preferences.h" | 10 #include "content/public/common/web_preferences.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 virtual void ProceedWithCrossSiteNavigation() OVERRIDE; | 35 virtual void ProceedWithCrossSiteNavigation() OVERRIDE; |
| 36 virtual void TestDidNavigate(RenderViewHost* render_view_host, | 36 virtual void TestDidNavigate(RenderViewHost* render_view_host, |
| 37 int page_id, | 37 int page_id, |
| 38 const GURL& url, | 38 const GURL& url, |
| 39 PageTransition transition) OVERRIDE; | 39 PageTransition transition) OVERRIDE; |
| 40 virtual void TestDidNavigateWithReferrer(RenderViewHost* render_view_host, | 40 virtual void TestDidNavigateWithReferrer(RenderViewHost* render_view_host, |
| 41 int page_id, | 41 int page_id, |
| 42 const GURL& url, | 42 const GURL& url, |
| 43 const Referrer& referrer, | 43 const Referrer& referrer, |
| 44 PageTransition transition) OVERRIDE; | 44 PageTransition transition) OVERRIDE; |
| 45 virtual WebPreferences TestComputeWebkitPrefs() OVERRIDE; | 45 virtual WebPreferences TestGetWebkitPrefs() OVERRIDE; |
| 46 | 46 |
| 47 TestRenderViewHost* pending_test_rvh() const; | 47 TestRenderViewHost* pending_test_rvh() const; |
| 48 | 48 |
| 49 // State accessor. | 49 // State accessor. |
| 50 bool cross_navigation_pending() { | 50 bool cross_navigation_pending() { |
| 51 return GetRenderManager()->cross_navigation_pending_; | 51 return GetRenderManager()->cross_navigation_pending_; |
| 52 } | 52 } |
| 53 | 53 |
| 54 // Prevent interaction with views. | 54 // Prevent interaction with views. |
| 55 virtual bool CreateRenderViewForRenderManager( | 55 virtual bool CreateRenderViewForRenderManager( |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 bool expect_set_history_length_and_prune_; | 125 bool expect_set_history_length_and_prune_; |
| 126 scoped_refptr<const SiteInstanceImpl> | 126 scoped_refptr<const SiteInstanceImpl> |
| 127 expect_set_history_length_and_prune_site_instance_; | 127 expect_set_history_length_and_prune_site_instance_; |
| 128 int expect_set_history_length_and_prune_history_length_; | 128 int expect_set_history_length_and_prune_history_length_; |
| 129 int32 expect_set_history_length_and_prune_min_page_id_; | 129 int32 expect_set_history_length_and_prune_min_page_id_; |
| 130 }; | 130 }; |
| 131 | 131 |
| 132 } // namespace content | 132 } // namespace content |
| 133 | 133 |
| 134 #endif // CONTENT_TEST_TEST_WEB_CONTENTS_H_ | 134 #endif // CONTENT_TEST_TEST_WEB_CONTENTS_H_ |
| OLD | NEW |