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

Side by Side Diff: webkit/tools/test_shell/simple_file_system.h

Issue 7048007: Move scoped_temp_dir and scoped_native_library back from base/memory to base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: unknwn Created 9 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 | Annotate | Revision Log
« no previous file with comments | « webkit/support/test_webkit_client.cc ('k') | webkit/tools/test_shell/test_shell.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_SYSTEM_H_ 5 #ifndef WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_SYSTEM_H_
6 #define WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_SYSTEM_H_ 6 #define WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_SYSTEM_H_
7 7
8 #include <vector>
9 #include "base/file_util_proxy.h" 8 #include "base/file_util_proxy.h"
10 #include "base/id_map.h" 9 #include "base/id_map.h"
11 #include "base/memory/scoped_temp_dir.h"
12 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
11 #include "base/scoped_temp_dir.h"
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h" 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h"
14 #include "webkit/fileapi/file_system_types.h" 13 #include "webkit/fileapi/file_system_types.h"
14 #include <vector>
15 15
16 namespace WebKit { 16 namespace WebKit {
17 class WebFileSystemCallbacks; 17 class WebFileSystemCallbacks;
18 class WebFrame; 18 class WebFrame;
19 } 19 }
20 20
21 namespace fileapi { 21 namespace fileapi {
22 class FileSystemContext; 22 class FileSystemContext;
23 class FileSystemOperation; 23 class FileSystemOperation;
24 } 24 }
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 // A temporary directory for FileSystem API. 76 // A temporary directory for FileSystem API.
77 ScopedTempDir file_system_dir_; 77 ScopedTempDir file_system_dir_;
78 78
79 scoped_refptr<fileapi::FileSystemContext> file_system_context_; 79 scoped_refptr<fileapi::FileSystemContext> file_system_context_;
80 80
81 DISALLOW_COPY_AND_ASSIGN(SimpleFileSystem); 81 DISALLOW_COPY_AND_ASSIGN(SimpleFileSystem);
82 }; 82 };
83 83
84 #endif // WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_SYSTEM_H_ 84 #endif // WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_SYSTEM_H_
OLDNEW
« no previous file with comments | « webkit/support/test_webkit_client.cc ('k') | webkit/tools/test_shell/test_shell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698