summaryrefslogtreecommitdiffstats
path: root/content/shell/shell_mac.mm
blob: 12ac1d88b5f250546092d66654bb70f1bd50a6b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/shell/shell.h"

#include "base/logging.h"
#include "base/string_piece.h"

namespace content {

void Shell::PlatformInitialize() {
  NOTIMPLEMENTED();
}

base::StringPiece Shell::PlatformResourceProvider(int key) {
  NOTIMPLEMENTED();
  return base::StringPiece();
}

void Shell::PlatformCleanUp() {
  NOTIMPLEMENTED();
}

void Shell::PlatformEnableUIControl(UIControl control, bool is_enabled) {
  NOTIMPLEMENTED();
}

void Shell::PlatformSetAddressBarURL(const GURL& url) {
}

void Shell::PlatformCreateWindow() {
  NOTIMPLEMENTED();
}

void Shell::PlatformSizeTo(int width, int height) {
  NOTIMPLEMENTED();
}

void Shell::PlatformResizeSubViews() {
  NOTIMPLEMENTED();
}

}  // namespace content