OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "components/error_page/common/error_page_params.h" |
| 6 |
| 7 #include "base/values.h" |
| 8 |
| 9 namespace error_page { |
| 10 |
| 11 ErrorPageParams::ErrorPageParams() |
| 12 : suggest_reload(false), |
| 13 reload_tracking_id(-1), |
| 14 search_tracking_id(-1) { |
| 15 } |
| 16 |
| 17 ErrorPageParams::~ErrorPageParams() { |
| 18 } |
| 19 |
| 20 } // namespace error_page |
OLD | NEW |