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

Side by Side Diff: chrome/common/temp_scaffolding_stubs.cc

Issue 21107: Stub implementation of gtk browser window. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 months 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 | « chrome/browser/browser_window_gtk.cc ('k') | no next file » | 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) 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
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
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
OLDNEW
« no previous file with comments | « chrome/browser/browser_window_gtk.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698