OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "webkit/tools/test_shell/test_shell.h" | 5 #include "webkit/tools/test_shell/test_shell.h" |
6 | 6 |
7 #include <gtk/gtk.h> | 7 #include <gtk/gtk.h> |
8 | 8 |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 } | 185 } |
186 | 186 |
187 bool IsDefaultPluginEnabled() { | 187 bool IsDefaultPluginEnabled() { |
188 return false; | 188 return false; |
189 } | 189 } |
190 | 190 |
191 std::wstring GetWebKitLocale() { | 191 std::wstring GetWebKitLocale() { |
192 return L"en-US"; | 192 return L"en-US"; |
193 } | 193 } |
194 | 194 |
195 // The following cookie functions shouldn't live here, but do for now in order | |
196 // to get things linking | |
197 | |
198 std::string GetCookies(const GURL &url, const GURL &policy_url) { | |
199 return ""; | |
200 } | |
201 | |
202 void SetCookie(const GURL &url, const GURL &policy_url, const std::string &cooki
e) { | |
203 } | |
204 | |
205 | |
206 ResourceLoaderBridge * | |
207 ResourceLoaderBridge::Create(WebFrame*, std::string const &, GURL const&, GURL c
onst&, GURL const&, std::string const&, int, int, ResourceType::Type, bool) { | |
208 return NULL; | |
209 } | |
210 | |
211 } // namespace webkit_glue | 195 } // namespace webkit_glue |
OLD | NEW |