| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 const GURL& url, | 124 const GURL& url, |
| 125 const GURL& policy_url, | 125 const GURL& policy_url, |
| 126 const GURL& referrer, | 126 const GURL& referrer, |
| 127 const std::string& frame_origin, | 127 const std::string& frame_origin, |
| 128 const std::string& main_frame_origin, | 128 const std::string& main_frame_origin, |
| 129 const std::string& headers, | 129 const std::string& headers, |
| 130 int load_flags, | 130 int load_flags, |
| 131 int requestor_pid, | 131 int requestor_pid, |
| 132 ResourceType::Type request_type, | 132 ResourceType::Type request_type, |
| 133 int app_cache_context_id, | 133 int app_cache_context_id, |
| 134 int routing_id) { | 134 int routing_id, |
| 135 const std::string& fallback_charset) { |
| 135 return NULL; | 136 return NULL; |
| 136 } | 137 } |
| 137 | 138 |
| 138 string16 GetLocalizedString(int message_id) { | 139 string16 GetLocalizedString(int message_id) { |
| 139 return EmptyString16(); | 140 return EmptyString16(); |
| 140 } | 141 } |
| 141 | 142 |
| 142 StringPiece GetDataResource(int resource_id) { | 143 StringPiece GetDataResource(int resource_id) { |
| 143 return StringPiece(); | 144 return StringPiece(); |
| 144 } | 145 } |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 bool DownloadUrl(const std::string& url, HWND caller_window) { | 218 bool DownloadUrl(const std::string& url, HWND caller_window) { |
| 218 return false; | 219 return false; |
| 219 } | 220 } |
| 220 #endif | 221 #endif |
| 221 | 222 |
| 222 } // namespace webkit_glue | 223 } // namespace webkit_glue |
| 223 | 224 |
| 224 #if defined(COMPILER_GCC) | 225 #if defined(COMPILER_GCC) |
| 225 #pragma GCC visibility pop | 226 #pragma GCC visibility pop |
| 226 #endif | 227 #endif |
| OLD | NEW |