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

Side by Side Diff: content/browser/renderer_host/render_widget_host_impl.h

Issue 1366123002: Cleanup: IWYU for base/gtest_prod_util.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gtest_iwyu
Patch Set: more lint Created 5 years, 2 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
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 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_
7 7
8 #include <list> 8 #include <list>
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
11 #include <utility> 11 #include <utility>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/callback.h" 14 #include "base/callback.h"
15 #include "base/gtest_prod_util.h"
16 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
17 #include "base/memory/weak_ptr.h" 16 #include "base/memory/weak_ptr.h"
18 #include "base/observer_list.h" 17 #include "base/observer_list.h"
19 #include "base/process/kill.h" 18 #include "base/process/kill.h"
20 #include "base/strings/string16.h" 19 #include "base/strings/string16.h"
21 #include "base/time/time.h" 20 #include "base/time/time.h"
22 #include "base/timer/timer.h" 21 #include "base/timer/timer.h"
23 #include "build/build_config.h" 22 #include "build/build_config.h"
24 #include "cc/resources/shared_bitmap.h" 23 #include "cc/resources/shared_bitmap.h"
25 #include "content/browser/renderer_host/event_with_latency_info.h" 24 #include "content/browser/renderer_host/event_with_latency_info.h"
(...skipping 812 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 bool is_focused_; 837 bool is_focused_;
839 838
840 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; 839 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_;
841 840
842 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); 841 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl);
843 }; 842 };
844 843
845 } // namespace content 844 } // namespace content
846 845
847 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ 846 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698