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

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

Issue 11359217: Move scoped_temp_dir from base to base/files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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/tools/test_shell/test_shell.h ('k') | no next file » | 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 WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ 5 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_
6 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ 6 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/utf_string_conversions.h" 9 #include "base/utf_string_conversions.h"
10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBFactory.h" 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBFactory.h"
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 virtual webkit_glue::WebSocketStreamHandleBridge* CreateWebSocketBridge( 102 virtual webkit_glue::WebSocketStreamHandleBridge* CreateWebSocketBridge(
103 WebKit::WebSocketStreamHandle* handle, 103 WebKit::WebSocketStreamHandle* handle,
104 webkit_glue::WebSocketStreamHandleDelegate* delegate) OVERRIDE; 104 webkit_glue::WebSocketStreamHandleDelegate* delegate) OVERRIDE;
105 105
106 private: 106 private:
107 scoped_ptr<webkit_glue::SimpleWebMimeRegistryImpl> mime_registry_; 107 scoped_ptr<webkit_glue::SimpleWebMimeRegistryImpl> mime_registry_;
108 MockWebClipboardImpl mock_clipboard_; 108 MockWebClipboardImpl mock_clipboard_;
109 SimpleClipboardClient clipboard_client_; 109 SimpleClipboardClient clipboard_client_;
110 webkit_glue::WebClipboardImpl real_clipboard_; 110 webkit_glue::WebClipboardImpl real_clipboard_;
111 webkit_glue::WebFileUtilitiesImpl file_utilities_; 111 webkit_glue::WebFileUtilitiesImpl file_utilities_;
112 ScopedTempDir appcache_dir_; 112 base::ScopedTempDir appcache_dir_;
113 SimpleAppCacheSystem appcache_system_; 113 SimpleAppCacheSystem appcache_system_;
114 SimpleDatabaseSystem database_system_; 114 SimpleDatabaseSystem database_system_;
115 SimpleDomStorageSystem dom_storage_system_; 115 SimpleDomStorageSystem dom_storage_system_;
116 SimpleWebCookieJarImpl cookie_jar_; 116 SimpleWebCookieJarImpl cookie_jar_;
117 scoped_refptr<TestShellWebBlobRegistryImpl> blob_registry_; 117 scoped_refptr<TestShellWebBlobRegistryImpl> blob_registry_;
118 SimpleFileSystem file_system_; 118 SimpleFileSystem file_system_;
119 119
120 #if defined(OS_WIN) 120 #if defined(OS_WIN)
121 WebKit::WebThemeEngine* active_theme_engine_; 121 WebKit::WebThemeEngine* active_theme_engine_;
122 #endif 122 #endif
123 }; 123 };
124 124
125 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ 125 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/test_shell.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698