summaryrefslogtreecommitdiffstats
path: root/athena/main/athena_main_delegate.h
blob: 14ce0812e44dda07c62b5229c94e641df265b291 (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
// Copyright 2014 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.

#ifndef ATHENA_MAIN_ATHENA_MAIN_DELEGATE_H_
#define ATHENA_MAIN_ATHENA_MAIN_DELEGATE_H_

#include "extensions/shell/app/shell_main_delegate.h"

namespace athena {

class AthenaMainDelegate : public extensions::ShellMainDelegate {
 public:
  AthenaMainDelegate() {}
  ~AthenaMainDelegate() override {}

 private:
  // extensions::ShellMainDelegate:
  content::ContentClient* CreateContentClient() override;
  content::ContentBrowserClient* CreateShellContentBrowserClient() override;
  content::ContentRendererClient* CreateShellContentRendererClient() override;
  void InitializeResourceBundle() override;

  DISALLOW_COPY_AND_ASSIGN(AthenaMainDelegate);
};

}  // namespace

#endif  // ATHENA_MAIN_ATHENA_MAIN_DELEGATE_H_