| 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_BROWSER_WEB_CONTENTS_TEST_WEB_CONTENTS_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_TEST_WEB_CONTENTS_H_ |
| 6 #define CONTENT_BROWSER_WEB_CONTENTS_TEST_WEB_CONTENTS_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_TEST_WEB_CONTENTS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "content/browser/web_contents/web_contents_impl.h" | 9 #include "content/browser/web_contents/web_contents_impl.h" |
| 10 #include "content/public/common/page_transition_types.h" | 10 #include "content/public/common/page_transition_types.h" |
| 11 #include "content/test/web_contents_tester.h" | 11 #include "content/public/test/web_contents_tester.h" |
| 12 #include "webkit/glue/webpreferences.h" | 12 #include "webkit/glue/webpreferences.h" |
| 13 | 13 |
| 14 class SiteInstanceImpl; | 14 class SiteInstanceImpl; |
| 15 | 15 |
| 16 namespace content { | 16 namespace content { |
| 17 | 17 |
| 18 class RenderViewHost; | 18 class RenderViewHost; |
| 19 class TestRenderViewHost; | 19 class TestRenderViewHost; |
| 20 class WebContentsTester; | 20 class WebContentsTester; |
| 21 | 21 |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 bool expect_set_history_length_and_prune_; | 112 bool expect_set_history_length_and_prune_; |
| 113 scoped_refptr<const SiteInstanceImpl> | 113 scoped_refptr<const SiteInstanceImpl> |
| 114 expect_set_history_length_and_prune_site_instance_; | 114 expect_set_history_length_and_prune_site_instance_; |
| 115 int expect_set_history_length_and_prune_history_length_; | 115 int expect_set_history_length_and_prune_history_length_; |
| 116 int32 expect_set_history_length_and_prune_min_page_id_; | 116 int32 expect_set_history_length_and_prune_min_page_id_; |
| 117 }; | 117 }; |
| 118 | 118 |
| 119 } // namespace content | 119 } // namespace content |
| 120 | 120 |
| 121 #endif // CONTENT_BROWSER_WEB_CONTENTS_TEST_WEB_CONTENTS_H_ | 121 #endif // CONTENT_BROWSER_WEB_CONTENTS_TEST_WEB_CONTENTS_H_ |
| OLD | NEW |