| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "config.h" | 5 #include "config.h" |
| 6 | 6 |
| 7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
| 8 | 8 |
| 9 MSVC_PUSH_WARNING_LEVEL(0); | 9 MSVC_PUSH_WARNING_LEVEL(0); |
| 10 #include "DOMWindow.h" | 10 #include "DOMWindow.h" |
| 11 #include "FloatRect.h" | 11 #include "FloatRect.h" |
| 12 #include "InspectorController.h" | 12 #include "InspectorController.h" |
| 13 #include "Page.h" | 13 #include "Page.h" |
| 14 #include "Settings.h" | 14 #include "Settings.h" |
| 15 MSVC_POP_WARNING(); | 15 MSVC_POP_WARNING(); |
| 16 | 16 |
| 17 #undef LOG | 17 #undef LOG |
| 18 #include "webkit/glue/inspector_client_impl.h" | 18 #include "webkit/glue/inspector_client_impl.h" |
| 19 #include "webkit/glue/webkit_glue.h" | 19 #include "webkit/glue/webkit_glue.h" |
| 20 #include "webkit/glue/weburlrequest.h" |
| 20 #include "webkit/glue/webview_impl.h" | 21 #include "webkit/glue/webview_impl.h" |
| 21 #include "googleurl/src/gurl.h" | 22 #include "googleurl/src/gurl.h" |
| 22 #include "net/base/net_util.h" | 23 #include "net/base/net_util.h" |
| 23 | 24 |
| 24 using namespace WebCore; | 25 using namespace WebCore; |
| 25 | 26 |
| 26 static const float kDefaultInspectorXPos = 10; | 27 static const float kDefaultInspectorXPos = 10; |
| 27 static const float kDefaultInspectorYPos = 50; | 28 static const float kDefaultInspectorYPos = 50; |
| 28 static const float kDefaultInspectorHeight = 640; | 29 static const float kDefaultInspectorHeight = 640; |
| 29 static const float kDefaultInspectorWidth = 480; | 30 static const float kDefaultInspectorWidth = 480; |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 } | 181 } |
| 181 | 182 |
| 182 void WebInspectorClient::storeSetting( | 183 void WebInspectorClient::storeSetting( |
| 183 const String& key, const InspectorController::Setting&) { | 184 const String& key, const InspectorController::Setting&) { |
| 184 NOTIMPLEMENTED(); | 185 NOTIMPLEMENTED(); |
| 185 } | 186 } |
| 186 | 187 |
| 187 void WebInspectorClient::removeSetting(const String& key) { | 188 void WebInspectorClient::removeSetting(const String& key) { |
| 188 NOTIMPLEMENTED(); | 189 NOTIMPLEMENTED(); |
| 189 } | 190 } |
| OLD | NEW |