Title: [124613] trunk
- Revision
- 124613
- Author
- [email protected]
- Date
- 2012-08-03 07:40:21 -0700 (Fri, 03 Aug 2012)
Log Message
Unreviewed build fix for GTK after r124479.
.:
* Source/autotools/symbols.filter: Removed unneeded symbol.
Source/WebKit2:
* UIProcess/WebInspectorProxy.cpp:
(WebKit): Moved static const definitions from header file.
* UIProcess/WebInspectorProxy.h:
(WebInspectorProxy): Don't give values to static const members
here.
Modified Paths
Diff
Modified: trunk/ChangeLog (124612 => 124613)
--- trunk/ChangeLog 2012-08-03 14:39:50 UTC (rev 124612)
+++ trunk/ChangeLog 2012-08-03 14:40:21 UTC (rev 124613)
@@ -1,3 +1,9 @@
+2012-08-03 Mario Sanchez Prada <[email protected]>
+
+ Unreviewed build fix for GTK after r124479.
+
+ * Source/autotools/symbols.filter: Removed unneeded symbol.
+
2012-08-03 Oswald Buddenhagen <[email protected]>
[Qt] Populate .qmake.cache from the top-level project file
Modified: trunk/Source/WebKit2/ChangeLog (124612 => 124613)
--- trunk/Source/WebKit2/ChangeLog 2012-08-03 14:39:50 UTC (rev 124612)
+++ trunk/Source/WebKit2/ChangeLog 2012-08-03 14:40:21 UTC (rev 124613)
@@ -1,3 +1,13 @@
+2012-08-03 Mario Sanchez Prada <[email protected]>
+
+ Unreviewed build fix for GTK after r124479.
+
+ * UIProcess/WebInspectorProxy.cpp:
+ (WebKit): Moved static const definitions from header file.
+ * UIProcess/WebInspectorProxy.h:
+ (WebInspectorProxy): Don't give values to static const members
+ here.
+
2012-08-03 Balazs Kelemen <[email protected]>
[WK2] LayerTreeCoordinator can disallow tile updates in forceRepaint
Modified: trunk/Source/WebKit2/UIProcess/WebInspectorProxy.cpp (124612 => 124613)
--- trunk/Source/WebKit2/UIProcess/WebInspectorProxy.cpp 2012-08-03 14:39:50 UTC (rev 124612)
+++ trunk/Source/WebKit2/UIProcess/WebInspectorProxy.cpp 2012-08-03 14:40:21 UTC (rev 124613)
@@ -50,6 +50,14 @@
namespace WebKit {
+const unsigned WebInspectorProxy::minimumWindowWidth = 500;
+const unsigned WebInspectorProxy::minimumWindowHeight = 400;
+
+const unsigned WebInspectorProxy::initialWindowWidth = 750;
+const unsigned WebInspectorProxy::initialWindowHeight = 650;
+
+const unsigned WebInspectorProxy::minimumAttachedHeight = 250;
+
static PassRefPtr<WebPageGroup> createInspectorPageGroup()
{
RefPtr<WebPageGroup> pageGroup = WebPageGroup::create("__WebInspectorPageGroup__", false, false);
Modified: trunk/Source/WebKit2/UIProcess/WebInspectorProxy.h (124612 => 124613)
--- trunk/Source/WebKit2/UIProcess/WebInspectorProxy.h 2012-08-03 14:39:50 UTC (rev 124612)
+++ trunk/Source/WebKit2/UIProcess/WebInspectorProxy.h 2012-08-03 14:40:21 UTC (rev 124613)
@@ -193,14 +193,14 @@
void createInspectorWindow();
#endif
- static const unsigned minimumWindowWidth = 500;
- static const unsigned minimumWindowHeight = 400;
+ static const unsigned minimumWindowWidth;
+ static const unsigned minimumWindowHeight;
- static const unsigned initialWindowWidth = 750;
- static const unsigned initialWindowHeight = 650;
+ static const unsigned initialWindowWidth;
+ static const unsigned initialWindowHeight;
// Keep this in sync with the value in InspectorFrontendClientLocal.
- static const unsigned minimumAttachedHeight = 250;
+ static const unsigned minimumAttachedHeight;
WebPageProxy* m_page;
Modified: trunk/Source/autotools/symbols.filter (124612 => 124613)
--- trunk/Source/autotools/symbols.filter 2012-08-03 14:39:50 UTC (rev 124612)
+++ trunk/Source/autotools/symbols.filter 2012-08-03 14:40:21 UTC (rev 124613)
@@ -171,7 +171,6 @@
_ZN7WebCore26ContextDestructionObserverD2Ev;
_ZN7WebCore26ContextDestructionObserverC2EPNS_22ScriptExecutionContextE;
_ZN7WebCore26ContextDestructionObserver16contextDestroyedEv;
-_ZN6WebKit17WebInspectorProxy21minimumAttachedHeightE;
local:
_Z*;
cti*;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes