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

Side by Side Diff: webkit/tools/test_shell/gtk/test_shell.cc

Issue 7974: Port a few test_shell_tests. Now it runs 45 of them.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 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/SConscript ('k') | webkit/tools/test_shell/image_decoder_unittest.h » ('j') | 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) 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
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
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/SConscript ('k') | webkit/tools/test_shell/image_decoder_unittest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698