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

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

Issue 113123: Fleshes out WidgetGTK and WindowGTK a bit more. This is still vary... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 7 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
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 "build/build_config.h" 7 #include "build/build_config.h"
8 8
9 #include <vector> 9 #include <vector>
10 10
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 } 262 }
263 #endif 263 #endif
264 264
265 DownloadRequestDialogDelegate* DownloadRequestDialogDelegate::Create( 265 DownloadRequestDialogDelegate* DownloadRequestDialogDelegate::Create(
266 TabContents* tab, 266 TabContents* tab,
267 DownloadRequestManager::TabDownloadState* host) { 267 DownloadRequestManager::TabDownloadState* host) {
268 NOTIMPLEMENTED(); 268 NOTIMPLEMENTED();
269 return NULL; 269 return NULL;
270 } 270 }
271 271
272 views::Window* CreateInputWindow(gfx::NativeWindow parent_hwnd,
273 InputWindowDelegate* delegate) {
274 NOTIMPLEMENTED();
275 return new views::Window();
276 }
277
278 namespace download_util { 272 namespace download_util {
279 273
280 void DragDownload(const DownloadItem* download, SkBitmap* icon) { 274 void DragDownload(const DownloadItem* download, SkBitmap* icon) {
281 NOTIMPLEMENTED(); 275 NOTIMPLEMENTED();
282 } 276 }
283 277
284 } // namespace download_util 278 } // namespace download_util
285 279
286 void WindowSizer::GetBrowserWindowBounds(const std::wstring& app_name, 280 void WindowSizer::GetBrowserWindowBounds(const std::wstring& app_name,
287 const gfx::Rect& specified_bounds, 281 const gfx::Rect& specified_bounds,
(...skipping 22 matching lines...) Expand all
310 } 304 }
311 305
312 void HungRendererDialog::ShowForTabContents(TabContents*) { 306 void HungRendererDialog::ShowForTabContents(TabContents*) {
313 NOTIMPLEMENTED(); 307 NOTIMPLEMENTED();
314 } 308 }
315 309
316 void BrowserList::AllBrowsersClosed() { 310 void BrowserList::AllBrowsersClosed() {
317 // TODO(port): Close any dependent windows if necessary when the last browser 311 // TODO(port): Close any dependent windows if necessary when the last browser
318 // window is closed. 312 // window is closed.
319 } 313 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698