| OLD | NEW |
| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 virtual bool statusbarVisible() OVERRIDE { return false; } | 97 virtual bool statusbarVisible() OVERRIDE { return false; } |
| 98 | 98 |
| 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 bool shouldReportDetailedMessageForSource(const String&) OVERRIDE {
return false; } |
| 108 virtual void addMessageToConsole(MessageSource, MessageLevel, const String&,
unsigned, const String&, const String&) OVERRIDE { } |
| 108 | 109 |
| 109 virtual bool canRunBeforeUnloadConfirmPanel() OVERRIDE { return false; } | 110 virtual bool canRunBeforeUnloadConfirmPanel() OVERRIDE { return false; } |
| 110 virtual bool runBeforeUnloadConfirmPanel(const String&, Frame*) OVERRIDE { r
eturn true; } | 111 virtual bool runBeforeUnloadConfirmPanel(const String&, Frame*) OVERRIDE { r
eturn true; } |
| 111 | 112 |
| 112 virtual void closeWindowSoon() OVERRIDE { } | 113 virtual void closeWindowSoon() OVERRIDE { } |
| 113 | 114 |
| 114 virtual void runJavaScriptAlert(Frame*, const String&) OVERRIDE { } | 115 virtual void runJavaScriptAlert(Frame*, const String&) OVERRIDE { } |
| 115 virtual bool runJavaScriptConfirm(Frame*, const String&) OVERRIDE { return f
alse; } | 116 virtual bool runJavaScriptConfirm(Frame*, const String&) OVERRIDE { return f
alse; } |
| 116 virtual bool runJavaScriptPrompt(Frame*, const String&, const String&, Strin
g&) OVERRIDE { return false; } | 117 virtual bool runJavaScriptPrompt(Frame*, const String&, const String&, Strin
g&) OVERRIDE { return false; } |
| 117 | 118 |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 virtual void didAddItem() OVERRIDE { } | 364 virtual void didAddItem() OVERRIDE { } |
| 364 virtual int backListCount() OVERRIDE { return 0; } | 365 virtual int backListCount() OVERRIDE { return 0; } |
| 365 virtual int forwardListCount() OVERRIDE { return 0; } | 366 virtual int forwardListCount() OVERRIDE { return 0; } |
| 366 }; | 367 }; |
| 367 | 368 |
| 368 void fillWithEmptyClients(Page::PageClients&); | 369 void fillWithEmptyClients(Page::PageClients&); |
| 369 | 370 |
| 370 } | 371 } |
| 371 | 372 |
| 372 #endif // EmptyClients_h | 373 #endif // EmptyClients_h |
| OLD | NEW |