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

Side by Side Diff: chrome/browser/profiles/off_the_record_profile_impl.h

Issue 151343002: Web MIDI: make naming convention be consistent (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review boliu #2 Created 6 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 #ifndef CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ 5 #ifndef CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_
6 #define CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ 6 #define CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/gtest_prod_util.h" 10 #include "base/gtest_prod_util.h"
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; 90 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE;
91 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( 91 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess(
92 int renderer_child_id) OVERRIDE; 92 int renderer_child_id) OVERRIDE;
93 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; 93 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE;
94 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( 94 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess(
95 int renderer_child_id) OVERRIDE; 95 int renderer_child_id) OVERRIDE;
96 virtual net::URLRequestContextGetter* 96 virtual net::URLRequestContextGetter*
97 GetMediaRequestContextForStoragePartition( 97 GetMediaRequestContextForStoragePartition(
98 const base::FilePath& partition_path, 98 const base::FilePath& partition_path,
99 bool in_memory) OVERRIDE; 99 bool in_memory) OVERRIDE;
100 virtual void RequestMIDISysExPermission( 100 virtual void RequestMidiSysExPermission(
101 int render_process_id, 101 int render_process_id,
102 int render_view_id, 102 int render_view_id,
103 int bridge_id, 103 int bridge_id,
104 const GURL& requesting_frame, 104 const GURL& requesting_frame,
105 const MIDISysExPermissionCallback& callback) OVERRIDE; 105 const MidiSysExPermissionCallback& callback) OVERRIDE;
106 virtual void CancelMIDISysExPermissionRequest( 106 virtual void CancelMidiSysExPermissionRequest(
107 int render_process_id, 107 int render_process_id,
108 int render_view_id, 108 int render_view_id,
109 int bridge_id, 109 int bridge_id,
110 const GURL& requesting_frame) OVERRIDE; 110 const GURL& requesting_frame) OVERRIDE;
111 virtual void RequestProtectedMediaIdentifierPermission( 111 virtual void RequestProtectedMediaIdentifierPermission(
112 int render_process_id, 112 int render_process_id,
113 int render_view_id, 113 int render_view_id,
114 int bridge_id, 114 int bridge_id,
115 int group_id, 115 int group_id,
116 const GURL& requesting_frame, 116 const GURL& requesting_frame,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 base::FilePath last_selected_directory_; 150 base::FilePath last_selected_directory_;
151 151
152 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; 152 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
153 153
154 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; 154 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_;
155 155
156 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); 156 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl);
157 }; 157 };
158 158
159 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ 159 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/media/midi_permission_infobar_delegate.cc ('k') | chrome/browser/profiles/off_the_record_profile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698