Browse Source

chore: add missing includes (#20003)

Alexey Kuzmin 5 years ago
parent
commit
c03288f458
2 changed files with 4 additions and 0 deletions
  1. 2 0
      shell/browser/native_window.cc
  2. 2 0
      shell/browser/native_window.h

+ 2 - 0
shell/browser/native_window.cc

@@ -9,6 +9,8 @@
 #include <utility>
 #include <vector>
 
+#include "base/memory/ptr_util.h"
+#include "base/strings/utf_string_conversions.h"
 #include "native_mate/dictionary.h"
 #include "shell/browser/browser.h"
 #include "shell/browser/window_list.h"

+ 2 - 0
shell/browser/native_window.h

@@ -14,7 +14,9 @@
 
 #include "base/memory/weak_ptr.h"
 #include "base/observer_list.h"
+#include "base/strings/string16.h"
 #include "base/supports_user_data.h"
+#include "base/values.h"
 #include "content/public/browser/desktop_media_id.h"
 #include "content/public/browser/web_contents_user_data.h"
 #include "extensions/browser/app_window/size_constraints.h"