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

Side by Side Diff: chrome/browser/ui/webui/inspect_ui.cc

Issue 10421003: Remove a bunch of trivial render_view_host_delegate.h includes in chrome. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix cros Created 8 years, 7 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 | « chrome/browser/ui/views/find_bar_host.h ('k') | chrome/test/base/ui_test_utils.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/browser/ui/webui/inspect_ui.h" 5 #include "chrome/browser/ui/webui/inspect_ui.h"
6 6
7 #include <set> 7 #include <set>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
(...skipping 17 matching lines...) Expand all
28 #include "content/public/browser/devtools_client_host.h" 28 #include "content/public/browser/devtools_client_host.h"
29 #include "content/public/browser/devtools_manager.h" 29 #include "content/public/browser/devtools_manager.h"
30 #include "content/public/browser/browser_thread.h" 30 #include "content/public/browser/browser_thread.h"
31 #include "content/public/browser/favicon_status.h" 31 #include "content/public/browser/favicon_status.h"
32 #include "content/public/browser/navigation_entry.h" 32 #include "content/public/browser/navigation_entry.h"
33 #include "content/public/browser/notification_service.h" 33 #include "content/public/browser/notification_service.h"
34 #include "content/public/browser/notification_source.h" 34 #include "content/public/browser/notification_source.h"
35 #include "content/public/browser/notification_types.h" 35 #include "content/public/browser/notification_types.h"
36 #include "content/public/browser/render_process_host.h" 36 #include "content/public/browser/render_process_host.h"
37 #include "content/public/browser/render_view_host.h" 37 #include "content/public/browser/render_view_host.h"
38 #include "content/public/browser/render_view_host_delegate.h"
39 #include "content/public/browser/render_widget_host.h" 38 #include "content/public/browser/render_widget_host.h"
40 #include "content/public/browser/web_contents.h" 39 #include "content/public/browser/web_contents.h"
41 #include "content/public/browser/web_ui.h" 40 #include "content/public/browser/web_ui.h"
42 #include "content/public/browser/worker_service.h" 41 #include "content/public/browser/worker_service.h"
43 #include "content/public/browser/worker_service_observer.h" 42 #include "content/public/browser/worker_service_observer.h"
44 #include "content/public/browser/web_contents.h" 43 #include "content/public/browser/web_contents.h"
45 #include "content/public/browser/web_ui_message_handler.h" 44 #include "content/public/browser/web_ui_message_handler.h"
46 #include "content/public/common/process_type.h" 45 #include "content/public/common/process_type.h"
47 #include "grit/browser_resources.h" 46 #include "grit/browser_resources.h"
48 #include "grit/generated_resources.h" 47 #include "grit/generated_resources.h"
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 } 414 }
416 415
417 void InspectUI::StopListeningNotifications() 416 void InspectUI::StopListeningNotifications()
418 { 417 {
419 if (!observer_) 418 if (!observer_)
420 return; 419 return;
421 observer_->InspectUIDestroyed(); 420 observer_->InspectUIDestroyed();
422 observer_ = NULL; 421 observer_ = NULL;
423 registrar_.RemoveAll(); 422 registrar_.RemoveAll();
424 } 423 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/find_bar_host.h ('k') | chrome/test/base/ui_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698