OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "components/toolbar/toolbar_model.h" | 5 #include "components/toolbar/toolbar_model.h" |
6 | 6 |
7 ToolbarModel::ToolbarModel() | 7 ToolbarModel::ToolbarModel() |
8 : input_in_progress_(false), | 8 : input_in_progress_(false) { |
Peter Kasting
2016/08/19 22:40:06
Nit: Can be on previous line
I might just inline
Marc Treib
2016/08/22 08:45:55
Done.
| |
9 url_replacement_enabled_(true) { | |
10 } | 9 } |
11 | 10 |
12 ToolbarModel::~ToolbarModel() { | 11 ToolbarModel::~ToolbarModel() { |
Peter Kasting
2016/08/19 22:40:06
Nit: I'd remove this and just use =default in the
Marc Treib
2016/08/22 08:45:55
Done.
| |
13 } | 12 } |
OLD | NEW |