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 "base/logging.h" |
18 #include "base/gfx/rect.h" | 19 #include "base/gfx/rect.h" |
19 #include "webkit/glue/inspector_client_impl.h" | 20 #include "webkit/glue/inspector_client_impl.h" |
20 #include "webkit/glue/webkit_glue.h" | 21 #include "webkit/glue/webkit_glue.h" |
21 #include "webkit/glue/weburlrequest.h" | 22 #include "webkit/glue/weburlrequest.h" |
22 #include "webkit/glue/webview_impl.h" | 23 #include "webkit/glue/webview_impl.h" |
23 #include "googleurl/src/gurl.h" | 24 #include "googleurl/src/gurl.h" |
24 #include "net/base/net_util.h" | 25 #include "net/base/net_util.h" |
25 | 26 |
26 using namespace WebCore; | 27 using namespace WebCore; |
27 | 28 |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 } | 176 } |
176 | 177 |
177 void WebInspectorClient::storeSetting( | 178 void WebInspectorClient::storeSetting( |
178 const String& key, const InspectorController::Setting&) { | 179 const String& key, const InspectorController::Setting&) { |
179 NOTIMPLEMENTED(); | 180 NOTIMPLEMENTED(); |
180 } | 181 } |
181 | 182 |
182 void WebInspectorClient::removeSetting(const String& key) { | 183 void WebInspectorClient::removeSetting(const String& key) { |
183 NOTIMPLEMENTED(); | 184 NOTIMPLEMENTED(); |
184 } | 185 } |
OLD | NEW |