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

Side by Side Diff: chrome/browser/views/clear_browsing_data.h

Issue 3159031: Remove wstrings from bookmarks, part 12. (Closed)
Patch Set: rebased ToT Created 10 years, 4 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
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 #ifndef CHROME_BROWSER_VIEWS_CLEAR_BROWSING_DATA_H_ 5 #ifndef CHROME_BROWSER_VIEWS_CLEAR_BROWSING_DATA_H_
6 #define CHROME_BROWSER_VIEWS_CLEAR_BROWSING_DATA_H_ 6 #define CHROME_BROWSER_VIEWS_CLEAR_BROWSING_DATA_H_
7 #pragma once 7 #pragma once
8 8
9 #include "app/combobox_model.h" 9 #include "app/combobox_model.h"
10 #include "chrome/browser/browsing_data_remover.h" 10 #include "chrome/browser/browsing_data_remover.h"
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 virtual std::wstring GetWindowTitle() const; 64 virtual std::wstring GetWindowTitle() const;
65 virtual bool Accept(); 65 virtual bool Accept();
66 virtual views::View* GetContentsView(); 66 virtual views::View* GetContentsView();
67 views::ClientView* CreateClientView(views::Window* window); 67 views::ClientView* CreateClientView(views::Window* window);
68 virtual views::View* GetExtraView() { return throbber_view_; } 68 virtual views::View* GetExtraView() { return throbber_view_; }
69 virtual bool GetSizeExtraViewHeightToButtons() { return true; } 69 virtual bool GetSizeExtraViewHeightToButtons() { return true; }
70 virtual views::View* GetInitiallyFocusedView(); 70 virtual views::View* GetInitiallyFocusedView();
71 71
72 // Overridden from ComboboxModel: 72 // Overridden from ComboboxModel:
73 virtual int GetItemCount(); 73 virtual int GetItemCount();
74 virtual std::wstring GetItemAt(int index); 74 virtual string16 GetItemAt(int index);
75 75
76 // Overridden from views::Combobox::Listener: 76 // Overridden from views::Combobox::Listener:
77 virtual void ItemChanged(views::Combobox* sender, int prev_index, 77 virtual void ItemChanged(views::Combobox* sender, int prev_index,
78 int new_index); 78 int new_index);
79 79
80 // Overridden from views::ButtonListener: 80 // Overridden from views::ButtonListener:
81 virtual void ButtonPressed(views::Button* sender, const views::Event& event); 81 virtual void ButtonPressed(views::Button* sender, const views::Event& event);
82 82
83 // Overriden from views::LinkController: 83 // Overriden from views::LinkController:
84 virtual void LinkActivated(views::Link* source, int event_flags); 84 virtual void LinkActivated(views::Link* source, int event_flags);
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 Profile* profile_; 119 Profile* profile_;
120 120
121 // If non-null it means removal is in progress. BrowsingDataRemover takes care 121 // If non-null it means removal is in progress. BrowsingDataRemover takes care
122 // of deleting itself when done. 122 // of deleting itself when done.
123 BrowsingDataRemover* remover_; 123 BrowsingDataRemover* remover_;
124 124
125 DISALLOW_COPY_AND_ASSIGN(ClearBrowsingDataView); 125 DISALLOW_COPY_AND_ASSIGN(ClearBrowsingDataView);
126 }; 126 };
127 127
128 #endif // CHROME_BROWSER_VIEWS_CLEAR_BROWSING_DATA_H_ 128 #endif // CHROME_BROWSER_VIEWS_CLEAR_BROWSING_DATA_H_
OLDNEW
« no previous file with comments | « chrome/browser/views/autofill_profiles_view_win.cc ('k') | chrome/browser/views/clear_browsing_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698