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

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

Issue 325163002: MacViews: Fix a forward declare of InputMethodDelegate in native_widget_private.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix 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 | Annotate | Revision Log
« no previous file with comments | « ui/views/widget/native_widget_mac.h ('k') | ui/views/widget/native_widget_private.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « ui/views/widget/native_widget_mac.h ('k') | ui/views/widget/native_widget_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698