Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(505)

Unified Diff: chrome/browser/shell_integration_android.cc

Issue 12321107: Move shell integration code from chrome/browser to apps (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/shell_integration_android.cc
diff --git a/chrome/browser/shell_integration_android.cc b/chrome/browser/shell_integration_android.cc
deleted file mode 100644
index 30623860b64d073a5ba434fc90d3a405df4d3add..0000000000000000000000000000000000000000
--- a/chrome/browser/shell_integration_android.cc
+++ /dev/null
@@ -1,45 +0,0 @@
-// 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
-ShellIntegration::DefaultWebClientSetPermission
- ShellIntegration::CanSetAsDefaultBrowser() {
- NOTIMPLEMENTED();
- return SET_DEFAULT_NOT_ALLOWED;
-}
-
-// static
-bool ShellIntegration::SetAsDefaultBrowser() {
- NOTIMPLEMENTED();
- return false;
-}
-
-// static
-bool ShellIntegration::SetAsDefaultProtocolClient(const std::string& protocol) {
- NOTIMPLEMENTED();
- return false;
-}
-
-// static
-ShellIntegration::DefaultWebClientState ShellIntegration::GetDefaultBrowser() {
- NOTIMPLEMENTED();
- return UNKNOWN_DEFAULT;
-}
-
-// static
-ShellIntegration::DefaultWebClientState
-ShellIntegration::IsDefaultProtocolClient(const std::string& protocol) {
- NOTIMPLEMENTED();
- return UNKNOWN_DEFAULT;
-}
-
-// static
-bool ShellIntegration::IsFirefoxDefaultBrowser() {
- return false;
-}
-

Powered by Google App Engine
This is Rietveld 408576698