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

Side by Side Diff: webkit/tools/test_shell/test_worker/test_worker_main.cc

Issue 159778: Make LocalStorage persistent (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 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/tools/test_shell/test_shell_webkit_init.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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #include "config.h" 5 #include "config.h"
6 6
7 #include "base/at_exit.h" 7 #include "base/at_exit.h"
8 #include "base/gfx/native_widget_types.h" 8 #include "base/gfx/native_widget_types.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
(...skipping 30 matching lines...) Expand all
41 virtual WebKit::WebMimeRegistry* mimeRegistry() { 41 virtual WebKit::WebMimeRegistry* mimeRegistry() {
42 NOTREACHED(); 42 NOTREACHED();
43 return NULL; 43 return NULL;
44 } 44 }
45 45
46 virtual WebKit::WebSandboxSupport* sandboxSupport() { 46 virtual WebKit::WebSandboxSupport* sandboxSupport() {
47 NOTREACHED(); 47 NOTREACHED();
48 return NULL; 48 return NULL;
49 } 49 }
50 50
51 virtual bool sandboxEnabled() {
52 return true;
53 }
54
51 virtual unsigned long long visitedLinkHash(const char* canonicalURL, 55 virtual unsigned long long visitedLinkHash(const char* canonicalURL,
52 size_t length) { 56 size_t length) {
53 NOTREACHED(); 57 NOTREACHED();
54 return 0; 58 return 0;
55 } 59 }
56 60
57 virtual bool isLinkVisited(unsigned long long linkHash) { 61 virtual bool isLinkVisited(unsigned long long linkHash) {
58 NOTREACHED(); 62 NOTREACHED();
59 return false; 63 return false;
60 } 64 }
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 bool DownloadUrl(const std::string& url, HWND caller_window) { 242 bool DownloadUrl(const std::string& url, HWND caller_window) {
239 return false; 243 return false;
240 } 244 }
241 #endif 245 #endif
242 246
243 } // namespace webkit_glue 247 } // namespace webkit_glue
244 248
245 #if defined(COMPILER_GCC) 249 #if defined(COMPILER_GCC)
246 #pragma GCC visibility pop 250 #pragma GCC visibility pop
247 #endif 251 #endif
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/test_shell_webkit_init.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698