| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |