| Index: chrome/browser/ui/gtk/options/options_window_gtk.cc
|
| diff --git a/chrome/browser/ui/gtk/options/options_window_gtk.cc b/chrome/browser/ui/gtk/options/options_window_gtk.cc
|
| index ecc8ab3a8e08c8c9c057b61403f915142376180a..1ba6641375562f858a25f3e0d79b7b16ed2085c3 100644
|
| --- a/chrome/browser/ui/gtk/options/options_window_gtk.cc
|
| +++ b/chrome/browser/ui/gtk/options/options_window_gtk.cc
|
| @@ -25,11 +25,6 @@
|
| #include "grit/generated_resources.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
|
|
| -#if defined(OS_CHROMEOS)
|
| -#include "chrome/browser/chromeos/options/internet_page_view.h"
|
| -#include "chrome/browser/chromeos/options/system_page_view.h"
|
| -#endif
|
| -
|
| ///////////////////////////////////////////////////////////////////////////////
|
| // OptionsWindowGtk
|
| //
|
| @@ -120,20 +115,6 @@ OptionsWindowGtk::OptionsWindowGtk(Profile* profile)
|
|
|
| notebook_ = gtk_notebook_new();
|
|
|
| -#if defined(OS_CHROMEOS)
|
| - gtk_notebook_append_page(
|
| - GTK_NOTEBOOK(notebook_),
|
| - (new chromeos::SystemPageView(profile_))->WrapInGtkWidget(),
|
| - gtk_label_new(
|
| - l10n_util::GetStringUTF8(IDS_OPTIONS_SYSTEM_TAB_LABEL).c_str()));
|
| -
|
| - gtk_notebook_append_page(
|
| - GTK_NOTEBOOK(notebook_),
|
| - (new chromeos::InternetPageView(profile_))->WrapInGtkWidget(),
|
| - gtk_label_new(
|
| - l10n_util::GetStringUTF8(IDS_OPTIONS_INTERNET_TAB_LABEL).c_str()));
|
| -#endif
|
| -
|
| gtk_notebook_append_page(
|
| GTK_NOTEBOOK(notebook_),
|
| general_page_.get_page_widget(),
|
|
|