| 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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 return NULL; | 351 return NULL; |
| 352 } | 352 } |
| 353 | 353 |
| 354 void NativeWidgetMac::OnRootViewLayout() const { | 354 void NativeWidgetMac::OnRootViewLayout() const { |
| 355 NOTIMPLEMENTED(); | 355 NOTIMPLEMENTED(); |
| 356 } | 356 } |
| 357 | 357 |
| 358 //////////////////////////////////////////////////////////////////////////////// | 358 //////////////////////////////////////////////////////////////////////////////// |
| 359 // NativeWidgetMac, NativeWidget implementation: | 359 // NativeWidgetMac, NativeWidget implementation: |
| 360 | 360 |
| 361 ui::EventHandler* NativeWidgetMac::GetEventHandler() { | 361 void NativeWidgetMac::RepostNativeEvent(gfx::NativeEvent os_event) { |
| 362 return NULL; | 362 NOTIMPLEMENTED(); |
| 363 } | 363 } |
| 364 | 364 |
| 365 //////////////////////////////////////////////////////////////////////////////// | 365 //////////////////////////////////////////////////////////////////////////////// |
| 366 // Widget, public: | 366 // Widget, public: |
| 367 | 367 |
| 368 bool Widget::ConvertRect(const Widget* source, | 368 bool Widget::ConvertRect(const Widget* source, |
| 369 const Widget* target, | 369 const Widget* target, |
| 370 gfx::Rect* rect) { | 370 gfx::Rect* rect) { |
| 371 return false; | 371 return false; |
| 372 } | 372 } |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 } | 435 } |
| 436 | 436 |
| 437 // static | 437 // static |
| 438 gfx::FontList NativeWidgetPrivate::GetWindowTitleFontList() { | 438 gfx::FontList NativeWidgetPrivate::GetWindowTitleFontList() { |
| 439 NOTIMPLEMENTED(); | 439 NOTIMPLEMENTED(); |
| 440 return gfx::FontList(); | 440 return gfx::FontList(); |
| 441 } | 441 } |
| 442 | 442 |
| 443 } // namespace internal | 443 } // namespace internal |
| 444 } // namespace views | 444 } // namespace views |
| OLD | NEW |