| 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 CHROME_BROWSER_PRERENDER_PRERENDER_CONTENTS_H_ | 5 #ifndef CHROME_BROWSER_PRERENDER_PRERENDER_CONTENTS_H_ |
| 6 #define CHROME_BROWSER_PRERENDER_PRERENDER_CONTENTS_H_ | 6 #define CHROME_BROWSER_PRERENDER_PRERENDER_CONTENTS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <list> | 9 #include <list> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <utility> | 11 #include <utility> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/time.h" | 15 #include "base/time.h" |
| 16 #include "base/values.h" | 16 #include "base/values.h" |
| 17 #include "chrome/browser/prerender/prerender_final_status.h" | 17 #include "chrome/browser/prerender/prerender_final_status.h" |
| 18 #include "content/public/browser/notification_observer.h" | 18 #include "content/public/browser/notification_observer.h" |
| 19 #include "content/public/browser/notification_registrar.h" | 19 #include "content/public/browser/notification_registrar.h" |
| 20 #include "content/public/browser/web_contents_observer.h" | 20 #include "content/public/browser/web_contents_observer.h" |
| 21 #include "content/public/common/referrer.h" | 21 #include "content/public/common/referrer.h" |
| 22 #include "ui/gfx/size.h" | 22 #include "ui/gfx/size.h" |
| 23 | 23 |
| 24 class Profile; | 24 class Profile; |
| 25 class TabContentsWrapper; | 25 class TabContents; |
| 26 typedef TabContents TabContentsWrapper; |
| 26 struct FaviconURL; | 27 struct FaviconURL; |
| 27 | 28 |
| 28 namespace base { | 29 namespace base { |
| 29 class ProcessMetrics; | 30 class ProcessMetrics; |
| 30 } | 31 } |
| 31 | 32 |
| 32 namespace content { | 33 namespace content { |
| 33 class RenderViewHost; | 34 class RenderViewHost; |
| 34 class SessionStorageNamespace; | 35 class SessionStorageNamespace; |
| 35 class WebContents; | 36 class WebContents; |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 | 353 |
| 353 // The size of the WebView from the launching page. | 354 // The size of the WebView from the launching page. |
| 354 gfx::Size size_; | 355 gfx::Size size_; |
| 355 | 356 |
| 356 DISALLOW_COPY_AND_ASSIGN(PrerenderContents); | 357 DISALLOW_COPY_AND_ASSIGN(PrerenderContents); |
| 357 }; | 358 }; |
| 358 | 359 |
| 359 } // namespace prerender | 360 } // namespace prerender |
| 360 | 361 |
| 361 #endif // CHROME_BROWSER_PRERENDER_PRERENDER_CONTENTS_H_ | 362 #endif // CHROME_BROWSER_PRERENDER_PRERENDER_CONTENTS_H_ |
| OLD | NEW |