Home | History | Annotate | Download | only in browser
      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 #include "chrome/browser/shell_integration.h"
      6 
      7 // static
      8 ShellIntegration::DefaultWebClientSetPermission
      9     ShellIntegration::CanSetAsDefaultBrowser() {
     10   return SET_DEFAULT_NOT_ALLOWED;
     11 }
     12 
     13 // static
     14 bool ShellIntegration::SetAsDefaultBrowser() {
     15   return false;
     16 }
     17 
     18 // static
     19 bool ShellIntegration::SetAsDefaultProtocolClient(const std::string& protocol) {
     20   return false;
     21 }
     22 
     23 // static
     24 ShellIntegration::DefaultWebClientState ShellIntegration::GetDefaultBrowser() {
     25   return UNKNOWN_DEFAULT;
     26 }
     27 
     28 // static
     29 ShellIntegration::DefaultWebClientState
     30 ShellIntegration::IsDefaultProtocolClient(const std::string& protocol) {
     31   return UNKNOWN_DEFAULT;
     32 }
     33 
     34 // static
     35 bool ShellIntegration::IsFirefoxDefaultBrowser() {
     36   return false;
     37 }
     38 
     39