diff options
author | cramya@chromium.org <cramya@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-24 19:13:17 +0000 |
---|---|---|
committer | cramya@chromium.org <cramya@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-24 19:13:17 +0000 |
commit | 84f62a65681e3c8dd4407b5f738d6f1efbee3667 (patch) | |
tree | acf1bfcff25d3adc16ba8ad7d1345a4c54cd0f83 /chrome/browser/shell_integration_android.cc | |
parent | 96b5ca62eaec49e0b10679ebb75c0d37c5157048 (diff) | |
download | chromium_src-84f62a65681e3c8dd4407b5f738d6f1efbee3667.zip chromium_src-84f62a65681e3c8dd4407b5f738d6f1efbee3667.tar.gz chromium_src-84f62a65681e3c8dd4407b5f738d6f1efbee3667.tar.bz2 |
Adding the android specific shell_integration file.
BUG=115375
TEST=none
Review URL: http://codereview.chromium.org/9447026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123520 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/shell_integration_android.cc')
-rw-r--r-- | chrome/browser/shell_integration_android.cc | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/chrome/browser/shell_integration_android.cc b/chrome/browser/shell_integration_android.cc new file mode 100644 index 0000000..af39bfa --- /dev/null +++ b/chrome/browser/shell_integration_android.cc @@ -0,0 +1,44 @@ +// Copyright (c) 2012 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 "base/logging.h" +#include "chrome/browser/shell_integration.h" + +// TODO: crbug/115375 to track implementation for following methods. +// static +bool ShellIntegration::CanSetAsDefaultBrowser() { + NOTIMPLEMENTED(); + return false; +} + +// static +bool ShellIntegration::SetAsDefaultBrowser() { + NOTIMPLEMENTED(); + return false; +} + +// static +bool ShellIntegration::SetAsDefaultProtocolClient(const std::string& protocol) { + NOTIMPLEMENTED(); + return false; +} + +// static +ShellIntegration::DefaultWebClientState ShellIntegration::IsDefaultBrowser() { + NOTIMPLEMENTED(); + return UNKNOWN_DEFAULT_WEB_CLIENT; +} + +// static +ShellIntegration::DefaultWebClientState +ShellIntegration::IsDefaultProtocolClient(const std::string& protocol) { + NOTIMPLEMENTED(); + return UNKNOWN_DEFAULT_WEB_CLIENT; +} + +// static +bool ShellIntegration::IsFirefoxDefaultBrowser() { + return false; +} + |