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

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

Issue 8473003: Add OVERRIDE to chrome/browser/extensions/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 (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 // Defines the Chrome Extensions Cookies API functions for accessing internet 5 // Defines the Chrome Extensions Cookies API functions for accessing internet
6 // cookies, as specified in chrome/common/extensions/api/extension_api.json. 6 // cookies, as specified in chrome/common/extensions/api/extension_api.json.
7 7
8 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_COOKIES_API_H_ 8 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_COOKIES_API_H_
9 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_COOKIES_API_H_ 9 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_COOKIES_API_H_
10 #pragma once 10 #pragma once
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 bool success_; 175 bool success_;
176 std::string store_id_; 176 std::string store_id_;
177 scoped_refptr<net::URLRequestContextGetter> store_context_; 177 scoped_refptr<net::URLRequestContextGetter> store_context_;
178 }; 178 };
179 179
180 // Implements the cookies.getAllCookieStores() extension function. 180 // Implements the cookies.getAllCookieStores() extension function.
181 class GetAllCookieStoresFunction : public CookiesFunction { 181 class GetAllCookieStoresFunction : public CookiesFunction {
182 public: 182 public:
183 virtual bool RunImpl() OVERRIDE; 183 virtual bool RunImpl() OVERRIDE;
184 // GetAllCookieStoresFunction is sync. 184 // GetAllCookieStoresFunction is sync.
185 virtual void Run(); 185 virtual void Run() OVERRIDE;
186 DECLARE_EXTENSION_FUNCTION_NAME("cookies.getAllCookieStores") 186 DECLARE_EXTENSION_FUNCTION_NAME("cookies.getAllCookieStores")
187 }; 187 };
188 188
189 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_COOKIES_API_H_ 189 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_COOKIES_API_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_context_menu_model.h ('k') | chrome/browser/extensions/extension_debugger_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698