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

Side by Side Diff: ui/views/widget/native_widget_mac.mm

Issue 307623002: MacViews: Replace NativeWidget::GetEventHandler() with RepostNativeEvent(..) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@20140528-MacViews-examples_exe
Patch Set: Created 6 years, 6 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 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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698