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 #include "ui/oak/oak_aura_window_display.h" | 5 #include "ui/oak/oak_aura_window_display.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/string_util.h" | 8 #include "base/strings/string_util.h" |
9 #include "base/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
11 #include "ui/aura/window.h" | 11 #include "ui/aura/window.h" |
12 #include "ui/base/models/table_model_observer.h" | 12 #include "ui/base/models/table_model_observer.h" |
13 #include "ui/oak/oak_pretty_print.h" | 13 #include "ui/oak/oak_pretty_print.h" |
14 | 14 |
15 namespace oak { | 15 namespace oak { |
16 namespace internal { | 16 namespace internal { |
17 namespace { | 17 namespace { |
18 enum { | 18 enum { |
19 ROW_ID = 0, | 19 ROW_ID = 0, |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 } | 155 } |
156 return EmptyString16(); | 156 return EmptyString16(); |
157 } | 157 } |
158 | 158 |
159 void OakAuraWindowDisplay::SetObserver(ui::TableModelObserver* observer) { | 159 void OakAuraWindowDisplay::SetObserver(ui::TableModelObserver* observer) { |
160 observer_ = observer; | 160 observer_ = observer; |
161 } | 161 } |
162 | 162 |
163 } // namespace internal | 163 } // namespace internal |
164 } // namespace oak | 164 } // namespace oak |
OLD | NEW |