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

Side by Side Diff: Source/core/loader/EmptyClients.h

Issue 18822004: Extension Error Piping - Blink: WebKit Side (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 5 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org)
3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 virtual void setScrollbarsVisible(bool) OVERRIDE { } 99 virtual void setScrollbarsVisible(bool) OVERRIDE { }
100 virtual bool scrollbarsVisible() OVERRIDE { return false; } 100 virtual bool scrollbarsVisible() OVERRIDE { return false; }
101 101
102 virtual void setMenubarVisible(bool) OVERRIDE { } 102 virtual void setMenubarVisible(bool) OVERRIDE { }
103 virtual bool menubarVisible() OVERRIDE { return false; } 103 virtual bool menubarVisible() OVERRIDE { return false; }
104 104
105 virtual void setResizable(bool) OVERRIDE { } 105 virtual void setResizable(bool) OVERRIDE { }
106 106
107 virtual void addMessageToConsole(MessageSource, MessageLevel, const String&, unsigned, const String&) OVERRIDE { } 107 virtual void addMessageToConsole(MessageSource, MessageLevel, const String&, unsigned, const String&) OVERRIDE { }
108 108
109 virtual bool shouldReportDetailedMessage(const String&) OVERRIDE { return fa lse; }
110 virtual void reportDetailedMessage(const String&, MessageLevel, const String &, const String&) OVERRIDE { }
111
109 virtual bool canRunBeforeUnloadConfirmPanel() OVERRIDE { return false; } 112 virtual bool canRunBeforeUnloadConfirmPanel() OVERRIDE { return false; }
110 virtual bool runBeforeUnloadConfirmPanel(const String&, Frame*) OVERRIDE { r eturn true; } 113 virtual bool runBeforeUnloadConfirmPanel(const String&, Frame*) OVERRIDE { r eturn true; }
111 114
112 virtual void closeWindowSoon() OVERRIDE { } 115 virtual void closeWindowSoon() OVERRIDE { }
113 116
114 virtual void runJavaScriptAlert(Frame*, const String&) OVERRIDE { } 117 virtual void runJavaScriptAlert(Frame*, const String&) OVERRIDE { }
115 virtual bool runJavaScriptConfirm(Frame*, const String&) OVERRIDE { return f alse; } 118 virtual bool runJavaScriptConfirm(Frame*, const String&) OVERRIDE { return f alse; }
116 virtual bool runJavaScriptPrompt(Frame*, const String&, const String&, Strin g&) OVERRIDE { return false; } 119 virtual bool runJavaScriptPrompt(Frame*, const String&, const String&, Strin g&) OVERRIDE { return false; }
117 120
118 virtual bool hasOpenedPopup() const OVERRIDE { return false; } 121 virtual bool hasOpenedPopup() const OVERRIDE { return false; }
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 virtual int forwardListCount() OVERRIDE { return 0; } 389 virtual int forwardListCount() OVERRIDE { return 0; }
387 virtual bool isActive() OVERRIDE { return false; } 390 virtual bool isActive() OVERRIDE { return false; }
388 virtual void close() OVERRIDE { } 391 virtual void close() OVERRIDE { }
389 }; 392 };
390 393
391 void fillWithEmptyClients(Page::PageClients&); 394 void fillWithEmptyClients(Page::PageClients&);
392 395
393 } 396 }
394 397
395 #endif // EmptyClients_h 398 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698