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

Side by Side Diff: webkit/glue/inspector_client_impl.h

Issue 182009: DevTools: call InspectorController.close on detach (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | webkit/glue/inspector_client_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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__
OLDNEW
« no previous file with comments | « no previous file | webkit/glue/inspector_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698