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

Side by Side Diff: Source/web/EditorClientImpl.cpp

Issue 23654015: Avoid using !OS() constructs. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix merge Created 7 years, 3 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
« no previous file with comments | « Source/core/platform/graphics/FontPlatformData.h ('k') | Source/web/WebFrameImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007 Apple, Inc. All rights reserved. 2 * Copyright (C) 2006, 2007 Apple, Inc. All rights reserved.
3 * Copyright (C) 2012 Google, Inc. All rights reserved. 3 * Copyright (C) 2012 Google, Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after
762 762
763 bool EditorClientImpl::spellingUIIsShowing() 763 bool EditorClientImpl::spellingUIIsShowing()
764 { 764 {
765 if (m_webView->spellCheckClient()) 765 if (m_webView->spellCheckClient())
766 return m_webView->spellCheckClient()->isShowingSpellingUI(); 766 return m_webView->spellCheckClient()->isShowingSpellingUI();
767 return false; 767 return false;
768 } 768 }
769 769
770 bool EditorClientImpl::supportsGlobalSelection() 770 bool EditorClientImpl::supportsGlobalSelection()
771 { 771 {
772 #if OS(POSIX) && !OS(MACOSX) 772 #if OS(WIN) || OS(MACOSX)
773 return false;
774 #else
773 return true; 775 return true;
774 #else
775 return false;
776 #endif 776 #endif
777 } 777 }
778 778
779 void EditorClientImpl::willSetInputMethodState() 779 void EditorClientImpl::willSetInputMethodState()
780 { 780 {
781 if (m_webView->client()) 781 if (m_webView->client())
782 m_webView->client()->resetInputMethod(); 782 m_webView->client()->resetInputMethod();
783 } 783 }
784 784
785 } // namesace WebKit 785 } // namesace WebKit
OLDNEW
« no previous file with comments | « Source/core/platform/graphics/FontPlatformData.h ('k') | Source/web/WebFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698