OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "content/shell/shell.h" |
| 6 |
| 7 namespace content { |
| 8 |
| 9 // static |
| 10 void Shell::PlatformInitialize() { |
| 11 } |
| 12 |
| 13 base::StringPiece Shell::PlatformResourceProvider(int key) { |
| 14 return base::StringPiece(); |
| 15 } |
| 16 |
| 17 void Shell::PlatformExit() { |
| 18 } |
| 19 |
| 20 void Shell::PlatformCleanUp() { |
| 21 } |
| 22 |
| 23 void Shell::PlatformEnableUIControl(UIControl control, bool is_enabled) { |
| 24 } |
| 25 |
| 26 void Shell::PlatformSetAddressBarURL(const GURL& url) { |
| 27 } |
| 28 |
| 29 void Shell::PlatformSetIsLoading(bool loading) { |
| 30 } |
| 31 |
| 32 void Shell::PlatformCreateWindow(int width, int height) { |
| 33 } |
| 34 |
| 35 void Shell::PlatformSetContents() { |
| 36 } |
| 37 |
| 38 void Shell::PlatformResizeSubViews() { |
| 39 } |
| 40 |
| 41 void Shell::Close() { |
| 42 } |
| 43 |
| 44 } // namespace content |
OLD | NEW |