- add sources.
[platform/framework/web/crosswalk.git] / src / base / android / java / src / org / chromium / base / BaseChromiumApplication.java
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
3 // found in the LICENSE file.
4
5 package org.chromium.base;
6
7 import android.app.Application;
8
9 /**
10  * Basic application functionality that should be shared among all browser applications.
11  */
12 public class BaseChromiumApplication extends Application {
13
14     @Override
15     public void onCreate() {
16         super.onCreate();
17         ActivityStatus.initialize(this);
18     }
19
20 }