| 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 #ifndef WEBKIT_GLUE_INSPECTOR_CLIENT_IMPL_H__ | 5 #ifndef WEBKIT_GLUE_INSPECTOR_CLIENT_IMPL_H__ |
| 6 #define WEBKIT_GLUE_INSPECTOR_CLIENT_IMPL_H__ | 6 #define WEBKIT_GLUE_INSPECTOR_CLIENT_IMPL_H__ |
| 7 | 7 |
| 8 #include "InspectorClient.h" | 8 #include "InspectorClient.h" |
| 9 #include "InspectorController.h" | 9 #include "InspectorController.h" |
| 10 #include <wtf/OwnPtr.h> | 10 #include <wtf/OwnPtr.h> |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 | 53 |
| 54 void LoadSettings(); | 54 void LoadSettings(); |
| 55 void SaveSettings(); | 55 void SaveSettings(); |
| 56 | 56 |
| 57 // The WebViewImpl of the page being inspected; gets passed to the constructor | 57 // The WebViewImpl of the page being inspected; gets passed to the constructor |
| 58 scoped_refptr<WebViewImpl> inspected_web_view_; | 58 scoped_refptr<WebViewImpl> inspected_web_view_; |
| 59 | 59 |
| 60 typedef HashMap<WebCore::String, WebCore::InspectorController::Setting> | 60 typedef HashMap<WebCore::String, WebCore::InspectorController::Setting> |
| 61 SettingsMap; | 61 SettingsMap; |
| 62 OwnPtr<SettingsMap> settings_; | 62 OwnPtr<SettingsMap> settings_; |
| 63 | |
| 64 // The WebView of the Inspector popup window | |
| 65 WebViewImpl* inspector_web_view_; | |
| 66 }; | 63 }; |
| 67 | 64 |
| 68 #endif // WEBKIT_GLUE_INSPECTOR_CLIENT_IMPL_H__ | 65 #endif // WEBKIT_GLUE_INSPECTOR_CLIENT_IMPL_H__ |
| OLD | NEW |