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

Unified Diff: components/guest_view/browser/guest_view_manager.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, 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 side-by-side diff with in-line comments
Download patch
Index: components/guest_view/browser/guest_view_manager.h
diff --git a/components/guest_view/browser/guest_view_manager.h b/components/guest_view/browser/guest_view_manager.h
index 87b1831481bcc4ef3c19803355605ab8bf168d35..63815f9d23d8043cfcd319f57a203127d8830ca5 100644
--- a/components/guest_view/browser/guest_view_manager.h
+++ b/components/guest_view/browser/guest_view_manager.h
@@ -10,7 +10,6 @@
#include <vector>
#include "base/bind.h"
-#include "base/gtest_prod_util.h"
#include "base/lazy_instance.h"
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
@@ -260,18 +259,19 @@ class GuestViewManager : public content::BrowserPluginGuestManager,
// |view_destruction_callback_map_| maps from embedder process ID to view ID
// to a vector of callback functions to be called when that view is destroyed.
- using Callbacks = std::vector<base::Closure> ;
- using CallbacksForEachViewID = std::map<int, Callbacks> ;
- using CallbacksForEachEmbedderID = std::map<int, CallbacksForEachViewID> ;
+ using Callbacks = std::vector<base::Closure>;
+ using CallbacksForEachViewID = std::map<int, Callbacks>;
+ using CallbacksForEachEmbedderID = std::map<int, CallbacksForEachViewID>;
CallbacksForEachEmbedderID view_destruction_callback_map_;
// This is used to ensure that an EmbedderRenderProcessHostObserver will not
// call into this GuestViewManager after it has been destroyed.
base::WeakPtrFactory<GuestViewManager> weak_ptr_factory_;
+ private:
DISALLOW_COPY_AND_ASSIGN(GuestViewManager);
};
} // namespace guest_view
-#endif // COMPONETS_GUEST_VIEW_BROWSER_GUEST_VIEW_MANAGER_H_
+#endif // COMPONENTS_GUEST_VIEW_BROWSER_GUEST_VIEW_MANAGER_H_
« no previous file with comments | « components/enhanced_bookmarks/enhanced_bookmark_model.h ('k') | components/guest_view/browser/test_guest_view_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698