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

Side by Side Diff: Source/modules/filesystem/InspectorFrontendHostFileSystem.h

Issue 273293002: Clean up unnecessary PassRefPtr.h include in modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 InspectorFrontendHostFileSystem_h 5 #ifndef InspectorFrontendHostFileSystem_h
6 #define InspectorFrontendHostFileSystem_h 6 #define InspectorFrontendHostFileSystem_h
7 7
8 #include "platform/heap/Handle.h" 8 #include "platform/heap/Handle.h"
9 #include "wtf/PassRefPtr.h"
10 #include "wtf/text/WTFString.h" 9 #include "wtf/text/WTFString.h"
11 10
12 namespace WebCore { 11 namespace WebCore {
13 12
14 class DOMFileSystem; 13 class DOMFileSystem;
15 class InspectorFrontendHost; 14 class InspectorFrontendHost;
16 15
17 class InspectorFrontendHostFileSystem { 16 class InspectorFrontendHostFileSystem {
18 public: 17 public:
19 static PassRefPtrWillBeRawPtr<DOMFileSystem> isolatedFileSystem(InspectorFro ntendHost&, const String& fileSystemName, const String& rootURL); 18 static PassRefPtrWillBeRawPtr<DOMFileSystem> isolatedFileSystem(InspectorFro ntendHost&, const String& fileSystemName, const String& rootURL);
20 static void upgradeDraggedFileSystemPermissions(InspectorFrontendHost&, DOMF ileSystem*); 19 static void upgradeDraggedFileSystemPermissions(InspectorFrontendHost&, DOMF ileSystem*);
21 private: 20 private:
22 InspectorFrontendHostFileSystem(); 21 InspectorFrontendHostFileSystem();
23 ~InspectorFrontendHostFileSystem(); 22 ~InspectorFrontendHostFileSystem();
24 }; 23 };
25 24
26 } // namespace WebCore 25 } // namespace WebCore
27 26
28 #endif // !defined(InspectorFrontendHostFileSystem_h) 27 #endif // !defined(InspectorFrontendHostFileSystem_h)
OLDNEW
« no previous file with comments | « Source/modules/filesystem/HTMLInputElementFileSystem.h ('k') | Source/modules/filesystem/WorkerGlobalScopeFileSystem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698