OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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/widget/native_widget_mac.h" | 5 #include "ui/views/widget/native_widget_mac.h" |
6 | 6 |
7 #include <Cocoa/Cocoa.h> | 7 #include <Cocoa/Cocoa.h> |
8 | 8 |
9 #include "ui/gfx/font_list.h" | 9 #include "ui/gfx/font_list.h" |
10 | 10 |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 bool NativeWidgetMac::HasCapture() const { | 122 bool NativeWidgetMac::HasCapture() const { |
123 NOTIMPLEMENTED(); | 123 NOTIMPLEMENTED(); |
124 return false; | 124 return false; |
125 } | 125 } |
126 | 126 |
127 InputMethod* NativeWidgetMac::CreateInputMethod() { | 127 InputMethod* NativeWidgetMac::CreateInputMethod() { |
128 NOTIMPLEMENTED(); | 128 NOTIMPLEMENTED(); |
129 return NULL; | 129 return NULL; |
130 } | 130 } |
131 | 131 |
132 InputMethodDelegate* NativeWidgetMac::GetInputMethodDelegate() { | 132 internal::InputMethodDelegate* NativeWidgetMac::GetInputMethodDelegate() { |
133 NOTIMPLEMENTED(); | 133 NOTIMPLEMENTED(); |
134 return NULL; | 134 return NULL; |
135 } | 135 } |
136 | 136 |
137 ui::InputMethod* NativeWidgetMac::GetHostInputMethod() { | 137 ui::InputMethod* NativeWidgetMac::GetHostInputMethod() { |
138 NOTIMPLEMENTED(); | 138 NOTIMPLEMENTED(); |
139 return NULL; | 139 return NULL; |
140 } | 140 } |
141 | 141 |
142 void NativeWidgetMac::CenterWindow(const gfx::Size& size) { | 142 void NativeWidgetMac::CenterWindow(const gfx::Size& size) { |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 } | 432 } |
433 | 433 |
434 // static | 434 // static |
435 gfx::FontList NativeWidgetPrivate::GetWindowTitleFontList() { | 435 gfx::FontList NativeWidgetPrivate::GetWindowTitleFontList() { |
436 NOTIMPLEMENTED(); | 436 NOTIMPLEMENTED(); |
437 return gfx::FontList(); | 437 return gfx::FontList(); |
438 } | 438 } |
439 | 439 |
440 } // namespace internal | 440 } // namespace internal |
441 } // namespace views | 441 } // namespace views |
OLD | NEW |