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

Side by Side Diff: chrome/browser/extensions/api/web_request/web_request_api.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) 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_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_API_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_API_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_API_H_ 6 #define CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_API_H_
7 #pragma once
8 7
9 #include <list> 8 #include <list>
10 #include <map> 9 #include <map>
11 #include <set> 10 #include <set>
12 #include <string> 11 #include <string>
13 #include <vector> 12 #include <vector>
14 13
15 #include "base/memory/singleton.h" 14 #include "base/memory/singleton.h"
16 #include "base/memory/weak_ptr.h" 15 #include "base/memory/weak_ptr.h"
17 #include "base/time.h" 16 #include "base/time.h"
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 virtual void OnQuotaExceeded() OVERRIDE; 418 virtual void OnQuotaExceeded() OVERRIDE;
420 virtual bool RunImpl() OVERRIDE; 419 virtual bool RunImpl() OVERRIDE;
421 }; 420 };
422 421
423 // Send updates to |host| with information about what webRequest-related 422 // Send updates to |host| with information about what webRequest-related
424 // extensions are installed. 423 // extensions are installed.
425 // TODO(mpcomplete): remove. http://crbug.com/100411 424 // TODO(mpcomplete): remove. http://crbug.com/100411
426 void SendExtensionWebRequestStatusToHost(content::RenderProcessHost* host); 425 void SendExtensionWebRequestStatusToHost(content::RenderProcessHost* host);
427 426
428 #endif // CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_API_H_ 427 #endif // CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_API_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698