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

Side by Side Diff: chrome/browser/chromeos/panels/panel_scroller_header.h

Issue 3179017: FBTF: Remove "obviously" unneeded standard C++ library #includes. (Closed)
Patch Set: fixed mac oopsie 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_CHROMEOS_PANELS_PANEL_SCROLLER_HEADER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_PANELS_PANEL_SCROLLER_HEADER_H_
6 #define CHROME_BROWSER_CHROMEOS_PANELS_PANEL_SCROLLER_HEADER_H_ 6 #define CHROME_BROWSER_CHROMEOS_PANELS_PANEL_SCROLLER_HEADER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string>
10
11 #include "base/basictypes.h" 9 #include "base/basictypes.h"
12 #include "base/string16.h" 10 #include "base/string16.h"
13 #include "views/view.h" 11 #include "views/view.h"
14 12
15 class PanelScroller; 13 class PanelScroller;
16 14
17 class PanelScrollerHeader : public views::View { 15 class PanelScrollerHeader : public views::View {
18 public: 16 public:
19 explicit PanelScrollerHeader(PanelScroller* scroller); 17 explicit PanelScrollerHeader(PanelScroller* scroller);
20 virtual ~PanelScrollerHeader(); 18 virtual ~PanelScrollerHeader();
(...skipping 10 matching lines...) Expand all
31 private: 29 private:
32 // Non-owning pointer to our parent scroller object. 30 // Non-owning pointer to our parent scroller object.
33 PanelScroller* scroller_; 31 PanelScroller* scroller_;
34 32
35 string16 title_; 33 string16 title_;
36 34
37 DISALLOW_COPY_AND_ASSIGN(PanelScrollerHeader); 35 DISALLOW_COPY_AND_ASSIGN(PanelScrollerHeader);
38 }; 36 };
39 37
40 #endif // CHROME_BROWSER_CHROMEOS_PANELS_PANEL_SCROLLER_HEADER_H_ 38 #endif // CHROME_BROWSER_CHROMEOS_PANELS_PANEL_SCROLLER_HEADER_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/options/language_config_view.h ('k') | chrome/browser/cocoa/cocoa_test_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698