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

Side by Side Diff: Source/core/page/ChromeClient.h

Issue 18822004: Extension Error Piping - Blink: WebKit Side (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Extracted Formatting Created 7 years, 4 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, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 virtual bool statusbarVisible() = 0; 118 virtual bool statusbarVisible() = 0;
119 119
120 virtual void setScrollbarsVisible(bool) = 0; 120 virtual void setScrollbarsVisible(bool) = 0;
121 virtual bool scrollbarsVisible() = 0; 121 virtual bool scrollbarsVisible() = 0;
122 122
123 virtual void setMenubarVisible(bool) = 0; 123 virtual void setMenubarVisible(bool) = 0;
124 virtual bool menubarVisible() = 0; 124 virtual bool menubarVisible() = 0;
125 125
126 virtual void setResizable(bool) = 0; 126 virtual void setResizable(bool) = 0;
127 127
128 virtual bool shouldReportDetailedMessageForSource(const String&) = 0;
128 virtual void addMessageToConsole(MessageSource, MessageLevel, const String& message, unsigned lineNumber, const String& sourceID) = 0; 129 virtual void addMessageToConsole(MessageSource, MessageLevel, const String& message, unsigned lineNumber, const String& sourceID) = 0;
129 // FIXME: Remove this MessageType variant once all the clients are updated. 130 // FIXME: Remove this MessageType variant once all the clients are updated.
130 virtual void addMessageToConsole(MessageSource source, MessageType, MessageL evel level, const String& message, unsigned lineNumber, const String& sourceID) 131 virtual void addMessageToConsole(MessageSource source, MessageType, MessageL evel level, const String& message, unsigned lineNumber, const String& sourceID)
131 { 132 {
132 addMessageToConsole(source, level, message, lineNumber, sourceID); 133 addMessageToConsole(source, level, message, lineNumber, sourceID);
133 } 134 }
134 135
135 virtual bool canRunBeforeUnloadConfirmPanel() = 0; 136 virtual bool canRunBeforeUnloadConfirmPanel() = 0;
136 virtual bool runBeforeUnloadConfirmPanel(const String& message, Frame*) = 0; 137 virtual bool runBeforeUnloadConfirmPanel(const String& message, Frame*) = 0;
137 138
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 281
281 // Notifies the client a popup was closed. 282 // Notifies the client a popup was closed.
282 virtual void popupClosed(PopupContainer* popupContainer) = 0; 283 virtual void popupClosed(PopupContainer* popupContainer) = 0;
283 284
284 protected: 285 protected:
285 virtual ~ChromeClient() { } 286 virtual ~ChromeClient() { }
286 }; 287 };
287 288
288 } 289 }
289 #endif // ChromeClient_h 290 #endif // ChromeClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698