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

Side by Side Diff: chrome/browser/extensions/window_controller.h

Issue 1869503004: Convert //tools to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, change iwyu fixes for converted directories to include <memory> Created 4 years, 8 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 CHROME_BROWSER_EXTENSIONS_WINDOW_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_WINDOW_CONTROLLER_H_
6 #define CHROME_BROWSER_EXTENSIONS_WINDOW_CONTROLLER_H_ 6 #define CHROME_BROWSER_EXTENSIONS_WINDOW_CONTROLLER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory>
10 #include <string> 11 #include <string>
11 12
12 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
13 #include "base/macros.h" 14 #include "base/macros.h"
14 #include "chrome/common/extensions/api/tabs.h" 15 #include "chrome/common/extensions/api/tabs.h"
15 #include "chrome/common/extensions/api/windows.h" 16 #include "chrome/common/extensions/api/windows.h"
16 17
17 class Browser; // TODO(stevenjb) eliminate this dependency. 18 class Browser; // TODO(stevenjb) eliminate this dependency.
18 class GURL; 19 class GURL;
19 class Profile; 20 class Profile;
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 private: 117 private:
117 ui::BaseWindow* window_; 118 ui::BaseWindow* window_;
118 Profile* profile_; 119 Profile* profile_;
119 120
120 DISALLOW_COPY_AND_ASSIGN(WindowController); 121 DISALLOW_COPY_AND_ASSIGN(WindowController);
121 }; 122 };
122 123
123 } // namespace extensions 124 } // namespace extensions
124 125
125 #endif // CHROME_BROWSER_EXTENSIONS_WINDOW_CONTROLLER_H_ 126 #endif // CHROME_BROWSER_EXTENSIONS_WINDOW_CONTROLLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_tab_util.h ('k') | extensions/browser/api/system_cpu/cpu_info_provider_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698