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

Side by Side Diff: chrome/browser/devtools/devtools_file_system_indexer.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment 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 CHROME_BROWSER_DEVTOOLS_DEVTOOLS_FILE_SYSTEM_INDEXER_H_ 5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVTOOLS_FILE_SYSTEM_INDEXER_H_
6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_FILE_SYSTEM_INDEXER_H_ 6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_FILE_SYSTEM_INDEXER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/callback.h" 14 #include "base/callback.h"
15 #include "base/files/file_proxy.h" 15 #include "base/files/file_proxy.h"
16 #include "base/macros.h" 16 #include "base/macros.h"
17 #include "base/memory/ref_counted.h" 17 #include "base/memory/ref_counted.h"
18 #include "base/memory/scoped_ptr.h"
18 19
19 class Profile; 20 class Profile;
20 21
21 namespace base { 22 namespace base {
22 class FilePath; 23 class FilePath;
23 class FileEnumerator; 24 class FileEnumerator;
24 class Time; 25 class Time;
25 } 26 }
26 27
27 namespace content { 28 namespace content {
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 virtual ~DevToolsFileSystemIndexer(); 105 virtual ~DevToolsFileSystemIndexer();
105 106
106 void SearchInPathOnFileThread(const std::string& file_system_path, 107 void SearchInPathOnFileThread(const std::string& file_system_path,
107 const std::string& query, 108 const std::string& query,
108 const SearchCallback& callback); 109 const SearchCallback& callback);
109 110
110 DISALLOW_COPY_AND_ASSIGN(DevToolsFileSystemIndexer); 111 DISALLOW_COPY_AND_ASSIGN(DevToolsFileSystemIndexer);
111 }; 112 };
112 113
113 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_FILE_SYSTEM_INDEXER_H_ 114 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_FILE_SYSTEM_INDEXER_H_
OLDNEW
« no previous file with comments | « chrome/browser/devtools/devtools_file_helper.h ('k') | chrome/browser/devtools/devtools_file_watcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698