| 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_CONFIG_H_ | 5 #ifndef CHROME_BROWSER_PRERENDER_PRERENDER_CONFIG_H_ |
| 6 #define CHROME_BROWSER_PRERENDER_PRERENDER_CONFIG_H_ | 6 #define CHROME_BROWSER_PRERENDER_PRERENDER_CONFIG_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 | 11 |
| 10 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 11 #include "ui/gfx/geometry/rect.h" | 13 #include "ui/gfx/geometry/rect.h" |
| 12 | 14 |
| 13 namespace prerender { | 15 namespace prerender { |
| 14 | 16 |
| 15 struct Config { | 17 struct Config { |
| 16 Config(); | 18 Config(); |
| 17 ~Config(); | 19 ~Config(); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 std::string user_agent_override; | 56 std::string user_agent_override; |
| 55 | 57 |
| 56 // Is the user agent being overridden for this NavigationEntry? | 58 // Is the user agent being overridden for this NavigationEntry? |
| 57 bool is_overriding_user_agent; | 59 bool is_overriding_user_agent; |
| 58 }; | 60 }; |
| 59 | 61 |
| 60 } // namespace prerender | 62 } // namespace prerender |
| 61 | 63 |
| 62 #endif // CHROME_BROWSER_PRERENDER_PRERENDER_CONFIG_H_ | 64 #endif // CHROME_BROWSER_PRERENDER_PRERENDER_CONFIG_H_ |
| 63 | 65 |
| OLD | NEW |