| 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> |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 | 332 |
| 333 // Origin for this prerender. | 333 // Origin for this prerender. |
| 334 Origin origin_; | 334 Origin origin_; |
| 335 | 335 |
| 336 // Experiment during which this prerender is performed. | 336 // Experiment during which this prerender is performed. |
| 337 uint8 experiment_id_; | 337 uint8 experiment_id_; |
| 338 | 338 |
| 339 // List of all pages the prerendered page has tried to prerender. | 339 // List of all pages the prerendered page has tried to prerender. |
| 340 PendingPrerenderList pending_prerender_list_; | 340 PendingPrerenderList pending_prerender_list_; |
| 341 | 341 |
| 342 // The process that created the child id. |
| 343 int creator_child_id_; |
| 344 |
| 342 DISALLOW_COPY_AND_ASSIGN(PrerenderContents); | 345 DISALLOW_COPY_AND_ASSIGN(PrerenderContents); |
| 343 }; | 346 }; |
| 344 | 347 |
| 345 } // namespace prerender | 348 } // namespace prerender |
| 346 | 349 |
| 347 #endif // CHROME_BROWSER_PRERENDER_PRERENDER_CONTENTS_H_ | 350 #endif // CHROME_BROWSER_PRERENDER_PRERENDER_CONTENTS_H_ |
| OLD | NEW |