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

Side by Side Diff: chrome/browser/ui/webui/theme_source.h

Issue 2884763002: Automated IWYU fix for TaskRunner includes. (Closed)
Patch Set: rebase on r472096 Created 3 years, 7 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
« no previous file with comments | « chrome/browser/ui/webui/net_export_ui.cc ('k') | chrome/renderer/chrome_mock_render_thread.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_UI_WEBUI_THEME_SOURCE_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_THEME_SOURCE_H_
6 #define CHROME_BROWSER_UI_WEBUI_THEME_SOURCE_H_ 6 #define CHROME_BROWSER_UI_WEBUI_THEME_SOURCE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/single_thread_task_runner.h"
13 #include "content/public/browser/url_data_source.h" 14 #include "content/public/browser/url_data_source.h"
14 15
15 class Profile; 16 class Profile;
16 17
17 class ThemeSource : public content::URLDataSource { 18 class ThemeSource : public content::URLDataSource {
18 public: 19 public:
19 explicit ThemeSource(Profile* profile); 20 explicit ThemeSource(Profile* profile);
20 ~ThemeSource() override; 21 ~ThemeSource() override;
21 22
22 // content::URLDataSource implementation. 23 // content::URLDataSource implementation.
(...skipping 23 matching lines...) Expand all
46 int resource_id, 47 int resource_id,
47 float scale); 48 float scale);
48 49
49 // The profile this object was initialized with. 50 // The profile this object was initialized with.
50 Profile* profile_; 51 Profile* profile_;
51 52
52 DISALLOW_COPY_AND_ASSIGN(ThemeSource); 53 DISALLOW_COPY_AND_ASSIGN(ThemeSource);
53 }; 54 };
54 55
55 #endif // CHROME_BROWSER_UI_WEBUI_THEME_SOURCE_H_ 56 #endif // CHROME_BROWSER_UI_WEBUI_THEME_SOURCE_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/net_export_ui.cc ('k') | chrome/renderer/chrome_mock_render_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698