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

Side by Side Diff: components/nacl/browser/nacl_browser.h

Issue 1853033003: Fix IWYU violators that don't include scoped_ptr.h in Windows build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 COMPONENTS_NACL_BROWSER_NACL_BROWSER_H_ 5 #ifndef COMPONENTS_NACL_BROWSER_NACL_BROWSER_H_
6 #define COMPONENTS_NACL_BROWSER_NACL_BROWSER_H_ 6 #define COMPONENTS_NACL_BROWSER_NACL_BROWSER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <deque> 10 #include <deque>
11 11
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/containers/mru_cache.h" 13 #include "base/containers/mru_cache.h"
14 #include "base/files/file.h" 14 #include "base/files/file.h"
15 #include "base/macros.h" 15 #include "base/macros.h"
16 #include "base/memory/scoped_ptr.h"
16 #include "base/memory/singleton.h" 17 #include "base/memory/singleton.h"
17 #include "base/memory/weak_ptr.h" 18 #include "base/memory/weak_ptr.h"
18 #include "base/time/time.h" 19 #include "base/time/time.h"
19 #include "build/build_config.h" 20 #include "build/build_config.h"
20 #include "components/nacl/browser/nacl_browser_delegate.h" 21 #include "components/nacl/browser/nacl_browser_delegate.h"
21 #include "components/nacl/browser/nacl_validation_cache.h" 22 #include "components/nacl/browser/nacl_validation_cache.h"
22 23
23 class URLPattern; 24 class URLPattern;
24 class GURL; 25 class GURL;
25 26
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 207
207 // Singletons get destroyed at shutdown. 208 // Singletons get destroyed at shutdown.
208 base::WeakPtrFactory<NaClBrowser> weak_factory_; 209 base::WeakPtrFactory<NaClBrowser> weak_factory_;
209 210
210 DISALLOW_COPY_AND_ASSIGN(NaClBrowser); 211 DISALLOW_COPY_AND_ASSIGN(NaClBrowser);
211 }; 212 };
212 213
213 } // namespace nacl 214 } // namespace nacl
214 215
215 #endif // COMPONENTS_NACL_BROWSER_NACL_BROWSER_H_ 216 #endif // COMPONENTS_NACL_BROWSER_NACL_BROWSER_H_
OLDNEW
« no previous file with comments | « components/guest_view/browser/guest_view_manager.h ('k') | components/nacl/browser/pnacl_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698