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

Side by Side Diff: components/nacl/browser/test_nacl_browser_delegate.cc

Issue 61063003: Keep NaCl plugins used in app background pages alive when active. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move callback impl to nacl_browser_delegate_impl.cc. Created 7 years, 1 month 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 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 "components/nacl/common/test_nacl_browser_delegate.h" 5 #include "components/nacl/browser/test_nacl_browser_delegate.h"
6 6
7 TestNaClBrowserDelegate::TestNaClBrowserDelegate() {} 7 TestNaClBrowserDelegate::TestNaClBrowserDelegate() {}
8 8
9 TestNaClBrowserDelegate::~TestNaClBrowserDelegate() {} 9 TestNaClBrowserDelegate::~TestNaClBrowserDelegate() {}
10 10
11 void TestNaClBrowserDelegate::ShowNaClInfobar(int render_process_id, 11 void TestNaClBrowserDelegate::ShowNaClInfobar(int render_process_id,
12 int render_view_id, 12 int render_view_id,
13 int error_id) {} 13 int error_id) {}
14 14
15 bool TestNaClBrowserDelegate::DialogsAreSuppressed() { 15 bool TestNaClBrowserDelegate::DialogsAreSuppressed() {
(...skipping 30 matching lines...) Expand all
46 base::FilePath* file_path) { 46 base::FilePath* file_path) {
47 return false; 47 return false;
48 } 48 }
49 49
50 void TestNaClBrowserDelegate::SetDebugPatterns(std::string debug_patterns) {} 50 void TestNaClBrowserDelegate::SetDebugPatterns(std::string debug_patterns) {}
51 51
52 bool TestNaClBrowserDelegate::URLMatchesDebugPatterns( 52 bool TestNaClBrowserDelegate::URLMatchesDebugPatterns(
53 const GURL& manifest_url) { 53 const GURL& manifest_url) {
54 return false; 54 return false;
55 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698