OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "content/shell/browser/shell.h" | 5 #include "content/shell/browser/shell.h" |
6 | 6 |
7 #include "content/public/browser/web_contents.h" | 7 #include "content/public/browser/web_contents.h" |
8 #include "content/public/browser/web_contents_view.h" | 8 #include "content/public/browser/web_contents_view.h" |
9 #include "content/shell/browser/shell_aura.h" | 9 #include "content/shell/browser/shell_aura.h" |
10 #include "ui/aura/client/aura_constants.h" | 10 #include "ui/aura/client/aura_constants.h" |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 content->Show(); | 191 content->Show(); |
192 } | 192 } |
193 | 193 |
194 void Shell::PlatformResizeSubViews() { | 194 void Shell::PlatformResizeSubViews() { |
195 } | 195 } |
196 | 196 |
197 void Shell::Close() { | 197 void Shell::Close() { |
198 web_contents_.reset(); | 198 web_contents_.reset(); |
199 } | 199 } |
200 | 200 |
201 void Shell::PlatformSetTitle(const string16& title) { | 201 void Shell::PlatformSetTitle(const base::string16& title) { |
202 } | 202 } |
203 | 203 |
204 } // namespace content | 204 } // namespace content |
OLD | NEW |