| 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 "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 | 318 |
| 319 | 319 |
| 320 //-------------------------------------------------------------------------- | 320 //-------------------------------------------------------------------------- |
| 321 namespace webkit_glue { | 321 namespace webkit_glue { |
| 322 | 322 |
| 323 bool IsDefaultPluginEnabled() { | 323 bool IsDefaultPluginEnabled() { |
| 324 NOTIMPLEMENTED(); | 324 NOTIMPLEMENTED(); |
| 325 return false; | 325 return false; |
| 326 } | 326 } |
| 327 | 327 |
| 328 #if defined(OS_MACOSX) | |
| 329 bool ClipboardIsFormatAvailable(Clipboard::FormatType format) { | |
| 330 NOTIMPLEMENTED(); | |
| 331 return false; | |
| 332 } | |
| 333 #endif | |
| 334 | |
| 335 } // webkit_glue | 328 } // webkit_glue |
| 336 | 329 |
| 337 #ifndef CHROME_DEBUGGER_DISABLED | 330 #ifndef CHROME_DEBUGGER_DISABLED |
| 338 DebuggerShell::DebuggerShell(DebuggerInputOutput *io) { } | 331 DebuggerShell::DebuggerShell(DebuggerInputOutput *io) { } |
| 339 DebuggerShell::~DebuggerShell() { } | 332 DebuggerShell::~DebuggerShell() { } |
| 340 void DebuggerShell::Start() { NOTIMPLEMENTED(); } | 333 void DebuggerShell::Start() { NOTIMPLEMENTED(); } |
| 341 void DebuggerShell::Debug(TabContents* tab) { NOTIMPLEMENTED(); } | 334 void DebuggerShell::Debug(TabContents* tab) { NOTIMPLEMENTED(); } |
| 342 void DebuggerShell::DebugMessage(const std::wstring& msg) { NOTIMPLEMENTED(); } | 335 void DebuggerShell::DebugMessage(const std::wstring& msg) { NOTIMPLEMENTED(); } |
| 343 void DebuggerShell::OnDebugAttach() { NOTIMPLEMENTED(); } | 336 void DebuggerShell::OnDebugAttach() { NOTIMPLEMENTED(); } |
| 344 void DebuggerShell::OnDebugDisconnect() { NOTIMPLEMENTED(); } | 337 void DebuggerShell::OnDebugDisconnect() { NOTIMPLEMENTED(); } |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 return new views::Window(); | 378 return new views::Window(); |
| 386 } | 379 } |
| 387 | 380 |
| 388 namespace download_util { | 381 namespace download_util { |
| 389 | 382 |
| 390 void DragDownload(const DownloadItem* download, SkBitmap* icon) { | 383 void DragDownload(const DownloadItem* download, SkBitmap* icon) { |
| 391 NOTIMPLEMENTED(); | 384 NOTIMPLEMENTED(); |
| 392 } | 385 } |
| 393 | 386 |
| 394 } // namespace download_util | 387 } // namespace download_util |
| OLD | NEW |