Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(121)

Side by Side Diff: ui/views/examples/examples_window.cc

Issue 1543173002: Switch to standard integer types in ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/views/examples/examples_window.h" 5 #include "ui/views/examples/examples_window.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 10
11 #include "base/macros.h"
11 #include "base/memory/scoped_vector.h" 12 #include "base/memory/scoped_vector.h"
12 #include "base/strings/utf_string_conversions.h" 13 #include "base/strings/utf_string_conversions.h"
13 #include "ui/base/models/combobox_model.h" 14 #include "ui/base/models/combobox_model.h"
14 #include "ui/base/ui_base_paths.h" 15 #include "ui/base/ui_base_paths.h"
15 #include "ui/views/background.h" 16 #include "ui/views/background.h"
16 #include "ui/views/controls/combobox/combobox.h" 17 #include "ui/views/controls/combobox/combobox.h"
17 #include "ui/views/controls/label.h" 18 #include "ui/views/controls/label.h"
18 #include "ui/views/examples/bubble_example.h" 19 #include "ui/views/examples/bubble_example.h"
19 #include "ui/views/examples/button_example.h" 20 #include "ui/views/examples/button_example.h"
20 #include "ui/views/examples/checkbox_example.h" 21 #include "ui/views/examples/checkbox_example.h"
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 widget->Show(); 231 widget->Show();
231 } 232 }
232 } 233 }
233 234
234 void LogStatus(const std::string& string) { 235 void LogStatus(const std::string& string) {
235 ExamplesWindowContents::instance()->SetStatus(string); 236 ExamplesWindowContents::instance()->SetStatus(string);
236 } 237 }
237 238
238 } // namespace examples 239 } // namespace examples
239 } // namespace views 240 } // namespace views
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698