OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 "base/callback.h" | 5 #include "base/callback.h" |
6 #include "components/nacl/browser/test_nacl_browser_delegate.h" | 6 #include "components/nacl/browser/test_nacl_browser_delegate.h" |
7 | 7 |
8 TestNaClBrowserDelegate::TestNaClBrowserDelegate() {} | 8 TestNaClBrowserDelegate::TestNaClBrowserDelegate() {} |
9 | 9 |
10 TestNaClBrowserDelegate::~TestNaClBrowserDelegate() {} | 10 TestNaClBrowserDelegate::~TestNaClBrowserDelegate() {} |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 } | 50 } |
51 | 51 |
52 void TestNaClBrowserDelegate::SetDebugPatterns( | 52 void TestNaClBrowserDelegate::SetDebugPatterns( |
53 const std::string& debug_patterns) {} | 53 const std::string& debug_patterns) {} |
54 | 54 |
55 bool TestNaClBrowserDelegate::URLMatchesDebugPatterns( | 55 bool TestNaClBrowserDelegate::URLMatchesDebugPatterns( |
56 const GURL& manifest_url) { | 56 const GURL& manifest_url) { |
57 return false; | 57 return false; |
58 } | 58 } |
59 | 59 |
60 content::BrowserPpapiHost::OnKeepaliveCallback | |
61 TestNaClBrowserDelegate::GetOnKeepaliveCallback() { | |
62 return content::BrowserPpapiHost::OnKeepaliveCallback(); | |
63 } | |
64 | |
65 bool TestNaClBrowserDelegate::IsNonSfiModeAllowed( | 60 bool TestNaClBrowserDelegate::IsNonSfiModeAllowed( |
66 const base::FilePath& profile_directory, | 61 const base::FilePath& profile_directory, |
67 const GURL& manifest_url) { | 62 const GURL& manifest_url) { |
68 return false; | 63 return false; |
69 } | 64 } |
OLD | NEW |