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

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

Issue 27150: Make chrome_plugin_host.cc and chrome_plugin_util.cc compile on Posix. (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
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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 return false; 239 return false;
240 } 240 }
241 241
242 // This depends on porting all the plugin IPC messages. 242 // This depends on porting all the plugin IPC messages.
243 bool IsPluginProcess() { 243 bool IsPluginProcess() {
244 return false; 244 return false;
245 } 245 }
246 246
247 //-------------------------------------------------------------------------- 247 //--------------------------------------------------------------------------
248 248
249 // This is from chrome_plugin_util.cc.
250 void CPB_Free(void* memory) { NOTIMPLEMENTED(); }
251
252 //--------------------------------------------------------------------------
253
254 void RunJavascriptMessageBox(WebContents* web_contents, 249 void RunJavascriptMessageBox(WebContents* web_contents,
255 int dialog_flags, 250 int dialog_flags,
256 const std::wstring& message_text, 251 const std::wstring& message_text,
257 const std::wstring& default_prompt_text, 252 const std::wstring& default_prompt_text,
258 bool display_suppress_checkbox, 253 bool display_suppress_checkbox,
259 IPC::Message* reply_msg) { 254 IPC::Message* reply_msg) {
260 NOTIMPLEMENTED(); 255 NOTIMPLEMENTED();
261 } 256 }
262 257
263 void RunBeforeUnloadDialog(WebContents* web_contents, 258 void RunBeforeUnloadDialog(WebContents* web_contents,
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 void DebuggerShell::DebugMessage(const std::wstring& msg) { NOTIMPLEMENTED(); } 340 void DebuggerShell::DebugMessage(const std::wstring& msg) { NOTIMPLEMENTED(); }
346 void DebuggerShell::OnDebugAttach() { NOTIMPLEMENTED(); } 341 void DebuggerShell::OnDebugAttach() { NOTIMPLEMENTED(); }
347 void DebuggerShell::OnDebugDisconnect() { NOTIMPLEMENTED(); } 342 void DebuggerShell::OnDebugDisconnect() { NOTIMPLEMENTED(); }
348 void DebuggerShell::DidConnect() { NOTIMPLEMENTED(); } 343 void DebuggerShell::DidConnect() { NOTIMPLEMENTED(); }
349 void DebuggerShell::DidDisconnect() { NOTIMPLEMENTED(); } 344 void DebuggerShell::DidDisconnect() { NOTIMPLEMENTED(); }
350 void DebuggerShell::ProcessCommand(const std::wstring& data) { 345 void DebuggerShell::ProcessCommand(const std::wstring& data) {
351 NOTIMPLEMENTED(); 346 NOTIMPLEMENTED();
352 } 347 }
353 #endif // !CHROME_DEBUGGER_DISABLED 348 #endif // !CHROME_DEBUGGER_DISABLED
354 349
355 ScopableCPRequest::~ScopableCPRequest() {
356 NOTIMPLEMENTED();
357 }
358
359 MemoryDetails::MemoryDetails() { 350 MemoryDetails::MemoryDetails() {
360 NOTIMPLEMENTED(); 351 NOTIMPLEMENTED();
361 } 352 }
362 353
363 void MemoryDetails::StartFetch() { 354 void MemoryDetails::StartFetch() {
364 NOTIMPLEMENTED(); 355 NOTIMPLEMENTED();
365 } 356 }
366 357
367 InfoBar* ConfirmInfoBarDelegate::CreateInfoBar() { 358 InfoBar* ConfirmInfoBarDelegate::CreateInfoBar() {
368 NOTIMPLEMENTED(); 359 NOTIMPLEMENTED();
369 return NULL; 360 return NULL;
370 } 361 }
371 362
372 InfoBar* AlertInfoBarDelegate::CreateInfoBar() { 363 InfoBar* AlertInfoBarDelegate::CreateInfoBar() {
373 NOTIMPLEMENTED(); 364 NOTIMPLEMENTED();
374 return NULL; 365 return NULL;
375 } 366 }
376 367
377 InfoBar* LinkInfoBarDelegate::CreateInfoBar() { 368 InfoBar* LinkInfoBarDelegate::CreateInfoBar() {
378 NOTIMPLEMENTED(); 369 NOTIMPLEMENTED();
379 return NULL; 370 return NULL;
380 } 371 }
381 372
382 void CPHandleCommand(int command, CPCommandInterface* data,
383 CPBrowsingContext context) {
384 NOTIMPLEMENTED();
385 }
386
387 bool CanImportURL(const GURL& url) { 373 bool CanImportURL(const GURL& url) {
388 NOTIMPLEMENTED(); 374 NOTIMPLEMENTED();
389 return false; 375 return false;
390 } 376 }
391 377
392 CPBrowserFuncs* GetCPBrowserFuncsForBrowser() {
393 NOTIMPLEMENTED();
394 return NULL;
395 }
396
397 DownloadRequestDialogDelegate* DownloadRequestDialogDelegate::Create( 378 DownloadRequestDialogDelegate* DownloadRequestDialogDelegate::Create(
398 TabContents* tab, 379 TabContents* tab,
399 DownloadRequestManager::TabDownloadState* host) { 380 DownloadRequestManager::TabDownloadState* host) {
400 NOTIMPLEMENTED(); 381 NOTIMPLEMENTED();
401 return NULL; 382 return NULL;
402 } 383 }
403 384
404 views::Window* CreateInputWindow(gfx::NativeWindow parent_hwnd, 385 views::Window* CreateInputWindow(gfx::NativeWindow parent_hwnd,
405 InputWindowDelegate* delegate) { 386 InputWindowDelegate* delegate) {
406 NOTIMPLEMENTED(); 387 NOTIMPLEMENTED();
407 return new views::Window(); 388 return new views::Window();
408 } 389 }
409 390
OLDNEW
« chrome/common/chrome_plugin_util.cc ('K') | « chrome/common/temp_scaffolding_stubs.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698