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

Side by Side Diff: content/shell/shell_aura.cc

Issue 10054038: Support WebView in ash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « content/shell/shell.cc ('k') | content/shell/shell_download_manager_delegate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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
OLDNEW
« no previous file with comments | « content/shell/shell.cc ('k') | content/shell/shell_download_manager_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698