| 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 "temp_scaffolding_stubs.h" | 5 #include "temp_scaffolding_stubs.h" |
| 6 | 6 |
| 7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/thread.h" | 9 #include "base/thread.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 } | 255 } |
| 256 // TODO(pinkerton): when these are removed, mock_webkit_glue.cc | 256 // TODO(pinkerton): when these are removed, mock_webkit_glue.cc |
| 257 // must be re-added to the unit_test target for tests. | 257 // must be re-added to the unit_test target for tests. |
| 258 void SetRecordPlaybackMode(bool) { } | 258 void SetRecordPlaybackMode(bool) { } |
| 259 void SetJavaScriptFlags(const std::wstring&) { } | 259 void SetJavaScriptFlags(const std::wstring&) { } |
| 260 void CheckForLeaks() { } | 260 void CheckForLeaks() { } |
| 261 std::string CreateHistoryStateForURL(const GURL& url) { return ""; } | 261 std::string CreateHistoryStateForURL(const GURL& url) { return ""; } |
| 262 } | 262 } |
| 263 #endif | 263 #endif |
| 264 | 264 |
| 265 #if defined(OS_LINUX) | |
| 266 BrowserWindow* BrowserWindow::CreateBrowserWindow(Browser* browser) { | |
| 267 NOTIMPLEMENTED() << "CreateBrowserWindow"; | |
| 268 return NULL; | |
| 269 } | |
| 270 #endif | |
| 271 | |
| 272 //-------------------------------------------------------------------------- | 265 //-------------------------------------------------------------------------- |
| 273 | 266 |
| 274 namespace chrome_browser_net { | 267 namespace chrome_browser_net { |
| 275 | 268 |
| 276 void EnableDnsPrefetch(bool) { NOTIMPLEMENTED(); } | 269 void EnableDnsPrefetch(bool) { NOTIMPLEMENTED(); } |
| 277 | 270 |
| 278 } // namespace chrome_browser_net | 271 } // namespace chrome_browser_net |
| 279 | 272 |
| 280 //-------------------------------------------------------------------------- | 273 //-------------------------------------------------------------------------- |
| 281 | 274 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 WebCursor::WebCursor() { | 389 WebCursor::WebCursor() { |
| 397 } | 390 } |
| 398 WebCursor::~WebCursor() { | 391 WebCursor::~WebCursor() { |
| 399 } | 392 } |
| 400 bool WebCursor::Deserialize(const Pickle* pickle, void** iter) { | 393 bool WebCursor::Deserialize(const Pickle* pickle, void** iter) { |
| 401 NOTIMPLEMENTED(); | 394 NOTIMPLEMENTED(); |
| 402 return false; | 395 return false; |
| 403 } | 396 } |
| 404 #endif | 397 #endif |
| 405 | 398 |
| OLD | NEW |