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

Side by Side Diff: components/nacl/browser/nacl_browser.h

Issue 145303002: Convert Media Galleries to use base::File (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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 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 #ifndef COMPONENTS_NACL_BROWSER_NACL_BROWSER_H_ 5 #ifndef COMPONENTS_NACL_BROWSER_NACL_BROWSER_H_
6 #define COMPONENTS_NACL_BROWSER_NACL_BROWSER_H_ 6 #define COMPONENTS_NACL_BROWSER_NACL_BROWSER_H_
7 7
8 #include <deque> 8 #include <deque>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 NaClResourceReady 130 NaClResourceReady
131 }; 131 };
132 132
133 NaClBrowser(); 133 NaClBrowser();
134 ~NaClBrowser(); 134 ~NaClBrowser();
135 135
136 void InitIrtFilePath(); 136 void InitIrtFilePath();
137 137
138 void OpenIrtLibraryFile(); 138 void OpenIrtLibraryFile();
139 139
140 void OnIrtOpened(base::PlatformFileError error_code, 140 void OnIrtOpened(base::File::Error error_code,
141 base::PassPlatformFile file, bool created); 141 base::PassPlatformFile file, bool created);
142 142
143 void InitValidationCacheFilePath(); 143 void InitValidationCacheFilePath();
144 void EnsureValidationCacheAvailable(); 144 void EnsureValidationCacheAvailable();
145 void OnValidationCacheLoaded(const std::string* data); 145 void OnValidationCacheLoaded(const std::string* data);
146 void RunWithoutValidationCache(); 146 void RunWithoutValidationCache();
147 147
148 // Dispatch waiting tasks if we are ready, or if we know we'll never be ready. 148 // Dispatch waiting tasks if we are ready, or if we know we'll never be ready.
149 void CheckWaiting(); 149 void CheckWaiting();
150 150
(...skipping 28 matching lines...) Expand all
179 scoped_ptr<NaClBrowserDelegate> browser_delegate_; 179 scoped_ptr<NaClBrowserDelegate> browser_delegate_;
180 180
181 std::deque<base::Time> crash_times_; 181 std::deque<base::Time> crash_times_;
182 182
183 DISALLOW_COPY_AND_ASSIGN(NaClBrowser); 183 DISALLOW_COPY_AND_ASSIGN(NaClBrowser);
184 }; 184 };
185 185
186 } // namespace nacl 186 } // namespace nacl
187 187
188 #endif // COMPONENTS_NACL_BROWSER_NACL_BROWSER_H_ 188 #endif // COMPONENTS_NACL_BROWSER_NACL_BROWSER_H_
OLDNEW
« no previous file with comments | « chrome/browser/sync_file_system/sync_status_code.cc ('k') | components/nacl/browser/nacl_browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698