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

Side by Side Diff: apps/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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "apps/shell_integration.h"
5 #include "base/logging.h" 6 #include "base/logging.h"
6 #include "chrome/browser/shell_integration.h"
7 7
8 // TODO: crbug/115375 to track implementation for following methods. 8 // TODO: crbug/115375 to track implementation for following methods.
9 // static 9 // static
10 ShellIntegration::DefaultWebClientSetPermission 10 ShellIntegration::DefaultWebClientSetPermission
11 ShellIntegration::CanSetAsDefaultBrowser() { 11 ShellIntegration::CanSetAsDefaultBrowser() {
12 NOTIMPLEMENTED(); 12 NOTIMPLEMENTED();
13 return SET_DEFAULT_NOT_ALLOWED; 13 return SET_DEFAULT_NOT_ALLOWED;
14 } 14 }
15 15
16 // static 16 // static
(...skipping 19 matching lines...) Expand all
36 ShellIntegration::IsDefaultProtocolClient(const std::string& protocol) { 36 ShellIntegration::IsDefaultProtocolClient(const std::string& protocol) {
37 NOTIMPLEMENTED(); 37 NOTIMPLEMENTED();
38 return UNKNOWN_DEFAULT; 38 return UNKNOWN_DEFAULT;
39 } 39 }
40 40
41 // static 41 // static
42 bool ShellIntegration::IsFirefoxDefaultBrowser() { 42 bool ShellIntegration::IsFirefoxDefaultBrowser() {
43 return false; 43 return false;
44 } 44 }
45 45
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698