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

Unified Diff: content/browser/accessibility/ax_tree_id_registry.h

Issue 2231533003: Remove unneeded base/stl_util.h includes in headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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: content/browser/accessibility/ax_tree_id_registry.h
diff --git a/content/browser/accessibility/ax_tree_id_registry.h b/content/browser/accessibility/ax_tree_id_registry.h
index fcb22e6f12ffc605fde62e146c2f5e48cf82abeb..7ef4fdabb72dbb0c21728c9a7fb4731b75911f55 100644
--- a/content/browser/accessibility/ax_tree_id_registry.h
+++ b/content/browser/accessibility/ax_tree_id_registry.h
@@ -6,9 +6,9 @@
#define CONTENT_BROWSER_ACCESSIBILITY_AX_TREE_ID_REGISTRY_H_
#include <map>
+#include <utility>
#include "base/macros.h"
-#include "base/stl_util.h"
namespace base {
template <typename T>
@@ -20,9 +20,9 @@ namespace content {
// A class which generates a unique id given a process id and frame routing id.
class AXTreeIDRegistry {
public:
- typedef std::pair<int, int> FrameID;
+ using FrameID = std::pair<int, int>;
- typedef int AXTreeID;
+ using AXTreeID = int;
static const AXTreeID kNoAXTreeID;
« no previous file with comments | « components/sync/engine_impl/cycle/status_controller.h ('k') | content/browser/indexed_db/indexed_db_observer_changes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698