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

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

Issue 7064033: Virtual destructors should have virtual keyword. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 7 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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_EXTENSION_I18N_API_H__ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_I18N_API_H__
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_I18N_API_H__ 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_I18N_API_H__
7 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/extensions/extension_function.h" 9 #include "chrome/browser/extensions/extension_function.h"
10 10
11 class GetAcceptLanguagesFunction : public SyncExtensionFunction { 11 class GetAcceptLanguagesFunction : public SyncExtensionFunction {
12 ~GetAcceptLanguagesFunction() {} 12 virtual ~GetAcceptLanguagesFunction() {}
13 virtual bool RunImpl(); 13 virtual bool RunImpl();
14 DECLARE_EXTENSION_FUNCTION_NAME("i18n.getAcceptLanguages") 14 DECLARE_EXTENSION_FUNCTION_NAME("i18n.getAcceptLanguages")
15 }; 15 };
16 16
17 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_I18N_API_H__ 17 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_I18N_API_H__
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_host.h ('k') | chrome/browser/extensions/extension_infobar_module.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698