| Index: chrome/browser/gtk/clear_browsing_data_dialog_gtk.h
 | 
| diff --git a/chrome/browser/gtk/clear_browsing_data_dialog_gtk.h b/chrome/browser/gtk/clear_browsing_data_dialog_gtk.h
 | 
| index 87a4546583856db8d5c5ae981f8397e1f6017322..c9db24d1de58e29f607455a8b28874da32be1d98 100644
 | 
| --- a/chrome/browser/gtk/clear_browsing_data_dialog_gtk.h
 | 
| +++ b/chrome/browser/gtk/clear_browsing_data_dialog_gtk.h
 | 
| @@ -1,4 +1,4 @@
 | 
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved.
 | 
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
 | 
|  // Use of this source code is governed by a BSD-style license that can be
 | 
|  // found in the LICENSE file.
 | 
|  
 | 
| @@ -6,65 +6,7 @@
 | 
|  #define CHROME_BROWSER_GTK_CLEAR_BROWSING_DATA_DIALOG_GTK_H_
 | 
|  #pragma once
 | 
|  
 | 
| -#include "app/gtk_signal.h"
 | 
| -#include "base/basictypes.h"
 | 
| -#include "base/scoped_ptr.h"
 | 
| -
 | 
| -typedef struct _GtkWidget GtkWidget;
 | 
| -typedef struct _GtkWindow GtkWindow;
 | 
| -
 | 
| -class AccessibleWidgetHelper;
 | 
| -class BrowsingDataRemover;
 | 
| -class Profile;
 | 
| -
 | 
| -class ClearBrowsingDataDialogGtk {
 | 
| - public:
 | 
| -  // Displays the dialog box to clear browsing data from |profile|.
 | 
| -  static void Show(GtkWindow* parent, Profile* profile);
 | 
| -
 | 
| - private:
 | 
| -  ClearBrowsingDataDialogGtk(GtkWindow* parent, Profile* profile);
 | 
| -  ~ClearBrowsingDataDialogGtk();
 | 
| -
 | 
| -  // Handler to respond to Ok and Cancel responses from the dialog.
 | 
| -  CHROMEGTK_CALLBACK_1(ClearBrowsingDataDialogGtk, void, OnDialogResponse, int);
 | 
| -
 | 
| -  // Handler to respond to widget clicked actions from the dialog.
 | 
| -  CHROMEGTK_CALLBACK_0(ClearBrowsingDataDialogGtk, void, OnDialogWidgetClicked);
 | 
| -
 | 
| -  CHROMEGTK_CALLBACK_0(ClearBrowsingDataDialogGtk, void, OnFlashLinkClicked);
 | 
| -
 | 
| -  // Enable or disable the dialog buttons depending on the state of the
 | 
| -  // checkboxes.
 | 
| -  void UpdateDialogButtons();
 | 
| -
 | 
| -  // Create a bitmask from the checkboxes of the dialog.
 | 
| -  int GetCheckedItems();
 | 
| -
 | 
| -  // The dialog window.
 | 
| -  GtkWidget* dialog_;
 | 
| -
 | 
| -  // UI elements.
 | 
| -  GtkWidget* del_history_checkbox_;
 | 
| -  GtkWidget* del_downloads_checkbox_;
 | 
| -  GtkWidget* del_cache_checkbox_;
 | 
| -  GtkWidget* del_cookies_checkbox_;
 | 
| -  GtkWidget* del_passwords_checkbox_;
 | 
| -  GtkWidget* del_form_data_checkbox_;
 | 
| -  GtkWidget* time_period_combobox_;
 | 
| -
 | 
| -  // Our current profile.
 | 
| -  Profile* profile_;
 | 
| -
 | 
| -  // If non-null it means removal is in progress. BrowsingDataRemover takes care
 | 
| -  // of deleting itself when done.
 | 
| -  BrowsingDataRemover* remover_;
 | 
| -
 | 
| -  // Helper object to manage accessibility metadata.
 | 
| -  scoped_ptr<AccessibleWidgetHelper> accessible_widget_helper_;
 | 
| -
 | 
| -  DISALLOW_COPY_AND_ASSIGN(ClearBrowsingDataDialogGtk);
 | 
| -};
 | 
| -
 | 
| +#include "chrome/browser/ui/gtk/clear_browsing_data_dialog_gtk.h"
 | 
| +// TODO(msw): remove this file once all includes have been updated.
 | 
|  
 | 
|  #endif  // CHROME_BROWSER_GTK_CLEAR_BROWSING_DATA_DIALOG_GTK_H_
 | 
| 
 |