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

Unified Diff: ui/base/ime/chromeos/component_extension_ime_manager.h

Issue 1871743003: ui: Add out-of-line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/base/ime/chromeos/component_extension_ime_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/chromeos/component_extension_ime_manager.h
diff --git a/ui/base/ime/chromeos/component_extension_ime_manager.h b/ui/base/ime/chromeos/component_extension_ime_manager.h
index 33fe88ee52ff4454256735a65c2c3a9f05194de2..d5d90d8489cdff6f7a02f7de29436f9e580fac5f 100644
--- a/ui/base/ime/chromeos/component_extension_ime_manager.h
+++ b/ui/base/ime/chromeos/component_extension_ime_manager.h
@@ -22,6 +22,7 @@ namespace chromeos {
// Represents an engine in component extension IME.
struct UI_BASE_IME_EXPORT ComponentExtensionEngine {
ComponentExtensionEngine();
+ ComponentExtensionEngine(const ComponentExtensionEngine& other);
~ComponentExtensionEngine();
std::string engine_id; // The engine id.
std::string display_name; // The display name.
@@ -36,6 +37,7 @@ struct UI_BASE_IME_EXPORT ComponentExtensionEngine {
// Represents a component extension IME.
struct UI_BASE_IME_EXPORT ComponentExtensionIME {
ComponentExtensionIME();
+ ComponentExtensionIME(const ComponentExtensionIME& other);
~ComponentExtensionIME();
std::string id; // extension id.
std::string manifest; // the contents of manifest.json
« no previous file with comments | « no previous file | ui/base/ime/chromeos/component_extension_ime_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698