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

Side by Side Diff: chrome/browser/extensions/file_reader.h

Issue 10698144: Remove #pragma once from chrome/browser/extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_EXTENSIONS_FILE_READER_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_FILE_READER_H_
6 #define CHROME_BROWSER_EXTENSIONS_FILE_READER_H_ 6 #define CHROME_BROWSER_EXTENSIONS_FILE_READER_H_
7 #pragma once
8 7
9 #include <string> 8 #include <string>
10 9
11 #include "base/callback.h" 10 #include "base/callback.h"
12 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
13 #include "chrome/common/extensions/extension_resource.h" 12 #include "chrome/common/extensions/extension_resource.h"
14 13
15 class MessageLoop; 14 class MessageLoop;
16 15
17 // This file defines an interface for reading a file asynchronously on a 16 // This file defines an interface for reading a file asynchronously on a
(...skipping 17 matching lines...) Expand all
35 virtual ~FileReader(); 34 virtual ~FileReader();
36 35
37 void ReadFileOnBackgroundThread(); 36 void ReadFileOnBackgroundThread();
38 37
39 ExtensionResource resource_; 38 ExtensionResource resource_;
40 Callback callback_; 39 Callback callback_;
41 MessageLoop* origin_loop_; 40 MessageLoop* origin_loop_;
42 }; 41 };
43 42
44 #endif // CHROME_BROWSER_EXTENSIONS_FILE_READER_H_ 43 #endif // CHROME_BROWSER_EXTENSIONS_FILE_READER_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/external_registry_extension_loader_win.h ('k') | chrome/browser/extensions/image_loading_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698