| 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/gfx/native_theme_gtk.h" | 5 #include "ui/gfx/native_theme_gtk.h" |
| 6 | 6 |
| 7 #include <gtk/gtk.h> | 7 #include <gtk/gtk.h> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 return kInvalidColorIdColor; | 78 return kInvalidColorIdColor; |
| 79 } | 79 } |
| 80 | 80 |
| 81 NativeThemeGtk::NativeThemeGtk() { | 81 NativeThemeGtk::NativeThemeGtk() { |
| 82 } | 82 } |
| 83 | 83 |
| 84 NativeThemeGtk::~NativeThemeGtk() { | 84 NativeThemeGtk::~NativeThemeGtk() { |
| 85 } | 85 } |
| 86 | 86 |
| 87 } // namespace gfx | 87 } // namespace gfx |
| OLD | NEW |