diff options
author | mhm@chromium.org <mhm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-22 02:02:39 +0000 |
---|---|---|
committer | mhm@chromium.org <mhm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-22 02:02:39 +0000 |
commit | 8819206f48b04c853ab9a05e6cf3161370780b19 (patch) | |
tree | b0838db00d82d00da303792174f8bea7da398693 /chrome/common | |
parent | 411717bd115d80fa95387ac9ea26a0fb00bf0f5f (diff) | |
download | chromium_src-8819206f48b04c853ab9a05e6cf3161370780b19.zip chromium_src-8819206f48b04c853ab9a05e6cf3161370780b19.tar.gz chromium_src-8819206f48b04c853ab9a05e6cf3161370780b19.tar.bz2 |
Fonts and Languages Linux GTK Preparation
Rearranged the windows and mac ports to use the cross platform interfaces. Updated windows fonts and languages to use those interfaces. As well, created stubs for mac platform.
BUG=13524 (http://crbug.com/13524)
TEST=Open a webpage with a textfield, right click and choose Spell checker options > Language Settings. Tested this on windows as well.
Review URL: http://codereview.chromium.org/140043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18900 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/temp_scaffolding_stubs.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/chrome/common/temp_scaffolding_stubs.cc b/chrome/common/temp_scaffolding_stubs.cc index 94910ce..8b4b46a 100644 --- a/chrome/common/temp_scaffolding_stubs.cc +++ b/chrome/common/temp_scaffolding_stubs.cc @@ -14,6 +14,7 @@ #include "chrome/browser/download/download_request_dialog_delegate.h" #include "chrome/browser/download/download_request_manager.h" #include "chrome/browser/first_run.h" +#include "chrome/browser/fonts_languages_window.h" #include "chrome/browser/hung_renderer_dialog.h" #include "chrome/browser/memory_details.h" #include "chrome/browser/options_window.h" @@ -337,6 +338,16 @@ void DockInfo::AdjustOtherWindowBounds() const { //------------------------------------------------------------------------------ +#if defined(OS_MACOSX) +void ShowFontsLanguagesWindow(gfx::NativeWindow window, + FontsLanguagesPage page, + Profile* profile) { + NOTIMPLEMENTED(); +} +#endif + +//------------------------------------------------------------------------------ + #if defined(OS_LINUX) && defined(TOOLKIT_VIEWS) namespace views { |