| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |