browser_process_platform_part_android.cc revision 90dce4d38c5ff5333bea97d859d4e484e27edf0c
1// Copyright (c) 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#include "chrome/browser/browser_process_platform_part_mac.h"
6#include "chrome/browser/lifetime/application_lifetime_android.h"
7
8BrowserProcessPlatformPart::BrowserProcessPlatformPart() {
9}
10
11BrowserProcessPlatformPart::~BrowserProcessPlatformPart() {
12}
13
14void BrowserProcessPlatformPart::AttemptExit() {
15  // Tell the Java code to finish() the Activity.
16  chrome::TerminateAndroid();
17}
18